Add campaign manager

This commit is contained in:
2025-10-27 10:02:58 +09:00
parent 891d462af1
commit 7c35c9a7df
18 changed files with 250 additions and 41 deletions

View File

@ -10,7 +10,13 @@
public bool IsCommon { get; set; }
public DateTime UpdatedAt { get; set; }
public DateTime SyncedAt { get; set; }
public int LastSyncOperationId { get; set; }
public virtual Operation LastSyncOperation { get; set; }
public string LastSyncError { get; set; }
public virtual ICollection<RegistryElement> Elements { get; set; } = [];
}