24 lines
540 B
C#
24 lines
540 B
C#
namespace Hcs.WebApp.Data.Hcs
|
|
{
|
|
public class Registry
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int Number { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public bool IsCommon { 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; } = [];
|
|
}
|
|
}
|