12 lines
382 B
C#

namespace EntityFrameworkCore.Domain;
// Since C#11, you do not need to wrap in accolades anymore.
public class Team : BaseDomainModel
{
public string? Name { get; set; }
public League? League { get; set; }
public int? LeagueId { get; set; }
public int CoachId { get; set; }
public List<Match> HomeMatches { get; set; }
public List<Match> AwayMatches { get; set; }
}