18 lines
402 B
C#
18 lines
402 B
C#
using BS.Shared.DataContracts.Feature.AI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface.Feature.AICore
|
|
{
|
|
public interface IAiPromptbausteinRoutineStep
|
|
{
|
|
int Position { get; }
|
|
IAiPromptbausteinPrompt Reference { get; }
|
|
long ReferenceVersion { get; }
|
|
}
|
|
}
|