Remove Team ID from Team model.

This is done to create a proper change to let Id now be the Primary Key.
This commit is contained in:
Kevin Matsubara 2025-04-06 20:10:36 +02:00
parent f137595a5a
commit 278064b19b

View File

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