22 lines
494 B
C#
22 lines
494 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 virtual ICollection<RegistryElement>? Elements { get; set; } = null;
|
|
}
|
|
}
|