-
Notifications
You must be signed in to change notification settings - Fork 16
/
DataKeys.cs
29 lines (26 loc) · 1.49 KB
/
DataKeys.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#pragma warning disable SA1600 // Elements should be documented
namespace DaLion.Overhaul.Modules.Taxes;
/// <summary>Holds the string keys of mod data fields used by <see cref="OverhaulModule.Taxes"/>.</summary>
internal sealed class DataKeys
{
// farmer
internal const string SeasonIncome = "SeasonIncome";
internal const string BusinessExpenses = "BusinessExpenses";
internal const string PercentDeductions = "PercentDeductions";
internal const string DebtOutstanding = "DebtOutstanding";
internal const string LatestDueIncomeTax = "LatestDueIncomeTax";
internal const string LatestOutstandingIncomeTax = "LatestOutstandingIncomeTax";
internal const string LatestTaxDeductions = "LatestTaxDeductions";
internal const string LatestDuePropertyTax = "LatestDuePropertyTax";
internal const string LatestOutstandingPropertyTax = "LatestOutstandingPropertyTax";
internal const string LatestAmountWithheld = "LatestAmountWithheld";
// farm
internal const string AgricultureValue = "AgricultureValue";
internal const string LivestockValue = "LivestockValue";
internal const string BuildingValue = "BuildingValue";
internal const string UsedTiles = "UsedTiles";
internal const string UsableTiles = "UsableTiles";
}
#pragma warning restore SA1600 // Elements should be documented
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member