Add soft delete flag to League model.
This commit is contained in:
parent
f02538b281
commit
bcb084d733
@ -3,5 +3,6 @@
|
||||
public class League : BaseDomainModel
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public List<Team> Teams { get; set; } = new List<Team>() { };
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user