Add progress to campaign entity

This commit is contained in:
2025-11-05 15:46:02 +09:00
parent 0169e5724d
commit 951ccd5924
6 changed files with 37 additions and 16 deletions

View File

@ -28,6 +28,8 @@ namespace Hcs.WebApp.Data.Hcs
public int Step { get; set; } = 0;
public int Progress { get; set; } = 0;
public string? FailureReason { get; set; }
public virtual ICollection<Operation>? Operations { get; set; } = null;