42 lines
966 B
C#
42 lines
966 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; }
|
|
|
|
public virtual IList<ApplicationUser> UserFavorites { get; set;} = new List<ApplicationUser>();
|
|
}
|
|
}
|