diff --git a/EntityFrameworkCore.Domain/League.cs b/EntityFrameworkCore.Domain/League.cs index 030a08a..5309c4b 100644 --- a/EntityFrameworkCore.Domain/League.cs +++ b/EntityFrameworkCore.Domain/League.cs @@ -3,5 +3,6 @@ public class League : BaseDomainModel { public string? Name { get; set; } + public bool IsDeleted { get; set; } public List Teams { get; set; } = new List() { }; }