26 lines
611 B
C#
26 lines
611 B
C#
using BS.Shared.DataContracts.Compact;
|
|
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 IAiPromptbausteinRoutine
|
|
{
|
|
string Title { get; }
|
|
string Description { get; }
|
|
long? ParentFolderOid { get; }
|
|
bool IsPublic { get; }
|
|
int Position { get; }
|
|
bool IsFavorite { get; }
|
|
AiActionType ActionType { get; }
|
|
|
|
bool CanEdit { get; }
|
|
List<IAiPromptbausteinRoutineStep> Steps { get; }
|
|
}
|
|
}
|