Files
BeWoPlaner/Data/Entities/AiPromptbausteinRoutineStep.cs

23 lines
454 B
C#
Raw Normal View History

2026-04-17 11:47:42 +02:00
using System;
using System.Collections.Generic;
using BS.Shared;
using BS.Shared.Core;
namespace BeWo.Data.Entities
{
2026-04-21 14:34:54 +02:00
public class AiPromptbausteinRoutineStep : BeWoEntityBase
2026-04-17 11:47:42 +02:00
{
2026-04-21 14:34:54 +02:00
public AiPromptbausteinRoutineStep()
2026-04-17 11:47:42 +02:00
{
2026-04-21 14:34:54 +02:00
_Tid = TableID.AiPromptbausteinRoutineStep;
2026-04-17 11:47:42 +02:00
}
public virtual int Position { get; set; }
public virtual AiPromptbausteinPrompt PromptReference { get; set; }
public virtual long ReferenceVersion { get; set; }
}
}