Files
BeWoPlaner/Shared/Interface/Feature/AICore/IAiPromptroutine.cs

26 lines
595 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 IAiPromptroutine
{
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<IAiPromptroutineStep> Steps { get; }
}
}