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 { 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 Steps { get; } } }