22 lines
567 B
C#
22 lines
567 B
C#
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class AiPromptbaustein : BeWoEntityBase
|
|
{
|
|
public AiPromptbaustein()
|
|
{
|
|
_Tid = TableID.AiPromptbaustein;
|
|
}
|
|
|
|
public virtual string Text { get; set; }
|
|
public virtual int Position { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual Employee Employee { get; set; }
|
|
public virtual bool IsOnlyForEmployee { get; set; }
|
|
public virtual AiPromptbaustein Parent { get; set; }
|
|
public virtual bool IsParent { get; set; }
|
|
public virtual bool IsExpanded { get; set; }
|
|
}
|
|
}
|