TigerEmu/Game/Settings/Setting.cs

7 lines
164 B
C#

namespace Tiger.Game.Settings;
public class Setting
{
public virtual string Key { get; set; } = null!;
public virtual string Value { get; set; } = null!;
}