Update campaign handling

This commit is contained in:
2025-10-27 16:56:08 +09:00
parent 445bfe8273
commit 6b3733001a
7 changed files with 86 additions and 11 deletions

View File

@ -15,10 +15,16 @@ namespace Hcs.WebApp.Data.Hcs
public string InitiatorId { get; set; }
public DateTime StartedAt { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? StartedAt { get; set; }
public DateTime? EndedAt { get; set; }
public int Step { get; set; }
public string FailureReason { get; set; }
public virtual ICollection<Operation> Operations { get; set; } = [];
[NotMapped]