TigerEmu/Game/Settings/SettingMap.cs

13 lines
324 B
C#
Raw Normal View History

2023-09-23 12:20:45 +00:00
// using FluentNHibernate.Mapping;
//
// namespace Tiger.Game.Settings;
//
// public class SettingMap : ClassMap<Setting>
// {
// public SettingMap()
// {
// Table("settings");
// Id(s => s.Key).Column("skey").Not.Nullable();
// Map(s => s.Value).Column("value").Not.Nullable();
// }
// }