using System.Collections.Generic; using BS.Shared; namespace BeWo.Data.Entities { public class AiSettings : BeWoEntityBase { public AiSettings() { this._Tid = TableID.AbsenceReason; } public virtual int SettingsType { get; set; } public virtual string Settings { get; set; } } }