Update common registries page

This commit is contained in:
2025-10-23 10:56:11 +09:00
parent ddb92ccd5b
commit 0626ce0176
12 changed files with 490 additions and 57 deletions

View File

@ -0,0 +1,27 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Hcs.WebApp.Data.Hcs
{
public class Operation
{
public enum OperationType
{
Nsi_15_7_0_1_ExportAllRegistryElements
}
public string Id { get; set; }
public OperationType Type { get; set; }
public string InitiatorId { get; set; }
public DateTime StartedAt { get; set; }
public DateTime? EndedAt { get; set; }
public string MessageGuid { get; set; }
[NotMapped]
public bool Completed => EndedAt.HasValue;
}
}