Provide Team model with LeagueId and CoachId.

This commit is contained in:
Kevin Matsubara 2025-04-06 11:35:10 +02:00
parent 2477d2b080
commit 4175eea10c

View File

@ -3,4 +3,6 @@
public class Team : BaseDomainModel
{
public string? Name { get; set; }
public int LeagueId { get; set; }
public int CoachId { get; set; }
}