-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDataKeys.cs
20 lines (19 loc) · 1.08 KB
/
DataKeys.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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.Ponds;
/// <summary>Holds the string keys of mod data fields used by <see cref="OverhaulModule.Ponds"/>.</summary>
internal sealed class DataKeys
{
internal const string FishQualities = "FishQualities";
internal const string FamilyQualities = "FamilyQualities";
internal const string FamilyLivingHere = "FamilyLivingHere";
internal const string DaysEmpty = "DaysEmpty";
internal const string SeaweedLivingHere = "SeaweedLivingHere";
internal const string GreenAlgaeLivingHere = "GreenAlgaeLivingHere";
internal const string WhiteAlgaeLivingHere = "WhiteAlgaeLivingHere";
internal const string CheckedToday = "CheckedToday";
internal const string ItemsHeld = "ItemsHeld";
internal const string MetalsHeld = "MetalsHeld";
}
#pragma warning restore SA1600 // Elements should be documented
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member