Files
BeWoPlaner/Shared/DataContracts/Feature/AI/AiPromptroutineStepDC.cs

22 lines
644 B
C#

using BS.Shared.DataContracts.Compact;
using BS.Shared.Interface;
using BS.Shared.Interface.Feature.AICore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.DataContracts.Feature.AI
{
public class AiPromptroutineStepDC : BeWoDataContract, IAiPromptroutineStep
{
[DataMember] public int Position { get; set; }
[DataMember] public AiPromptbausteinPromptDC PromptReference { get; set; }
[DataMember] public long ReferenceVersion { get; set; }
public IAiPromptbausteinPrompt Reference => PromptReference;
}
}