Add soft delete flag to League model.

This commit is contained in:
Kevin Matsubara 2025-04-14 22:13:48 +02:00
parent f02538b281
commit bcb084d733

View File

@ -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>() { };
}