Files
BeWoPlaner/Data/Entities/AiSettings.cs

19 lines
358 B
C#
Raw Permalink Normal View History

2024-09-25 16:57:03 +02:00
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; }
}
}