19 lines
358 B
C#
19 lines
358 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|