40 lines
867 B
C#
40 lines
867 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.Interface;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class AiPromptbausteinPrompt : BeWoEntityBase, IAiPromptbausteinPrompt
|
|
{
|
|
public AiPromptbausteinPrompt()
|
|
{
|
|
_Tid = TableID.AiPromptbausteinPrompt;
|
|
}
|
|
|
|
public virtual string Title { get; set; }
|
|
|
|
public virtual string Description { get; set; }
|
|
|
|
public virtual long? ParentFolderOid { get; set; }
|
|
|
|
public virtual long CreatorOid { get; set; }
|
|
|
|
public virtual bool IsPublic { get; set; }
|
|
|
|
public virtual int Position { get; set; }
|
|
|
|
public virtual string Prompt { get; set; }
|
|
|
|
public virtual bool ShowPrompt { get; set; }
|
|
|
|
public virtual bool ShowPromptByTenant { get; set; }
|
|
|
|
public virtual bool IsOwnsoftPrompt { get; set; }
|
|
|
|
public virtual string OwnsoftRefLink { get; set; }
|
|
}
|
|
}
|