TigerEmu/Game/Settings/Setting.cs

7 lines
164 B
C#
Raw Normal View History

2023-09-23 12:20:45 +00:00
namespace Tiger.Game.Settings;
public class Setting
{
public virtual string Key { get; set; } = null!;
public virtual string Value { get; set; } = null!;
2023-09-23 12:20:45 +00:00
}