9 lines
222 B
C#
9 lines
222 B
C#
namespace EntityFrameworkCore.Domain;
|
|
|
|
public class League : BaseDomainModel
|
|
{
|
|
public string? Name { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public List<Team> Teams { get; set; } = new List<Team>() { };
|
|
}
|