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

25 lines
569 B
C#
Raw Normal View History

2026-04-17 11:47:42 +02:00
using BS.Shared.DataContracts.Compact;
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
{
2026-04-21 14:34:54 +02:00
public interface IAiPromptbausteinRoutine
2026-04-17 11:47:42 +02:00
{
string Title { get; }
string Description { get; }
long? ParentFolderOid { get; }
bool IsPublic { get; }
int Position { get; }
bool IsFavorite { get; }
AiActionType ActionType { get; }
bool CanEdit { get; }
2026-04-21 14:34:54 +02:00
List<IAiPromptbausteinRoutineStep> Steps { get; }
2026-04-17 11:47:42 +02:00
}
}