feat(prime): add the action kind to the settings viewmodels

This commit is contained in:
mika kuns
2026-08-25 09:01:33 +02:00
parent 9ab17d827b
commit 57be4961a8
4 changed files with 176 additions and 6 deletions
+4 -1
View File
@@ -1,3 +1,5 @@
using ClaudeDo.Data.Models;
namespace ClaudeDo.Ui.Services;
public sealed record PrimeScheduleDto(
@@ -6,7 +8,8 @@ public sealed record PrimeScheduleDto(
TimeSpan TimeOfDay,
bool Enabled,
DateTimeOffset? LastRunAt,
string? PromptOverride);
string? PromptOverride,
PrimeActionKind Kind);
public sealed record PrimeFiredEvent(
Guid ScheduleId,