Add IsCancelled to Layer model

This commit is contained in:
Michał Zieliński
2025-05-29 11:41:36 +02:00
parent f84029ee4c
commit d4044aa7b3
10 changed files with 431 additions and 13 deletions

View File

@@ -26,7 +26,9 @@ public class Layer
[Required]
public DateTime ModifiedAt { get; set; }
[Required]
public bool IsDeleted { get; init; }
public bool IsDeleted { get; init; } = false;
[Required]
public bool IsCancelled { get; init; } = false;
#endregion
#region Relations
public ICollection<Record>? Records { get; init; }