From 4175eea10c34cfd91dc307c10192599a986acda5 Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Sun, 6 Apr 2025 11:35:10 +0200 Subject: [PATCH] Provide Team model with LeagueId and CoachId. --- EntityFrameworkCore.Domain/Team.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EntityFrameworkCore.Domain/Team.cs b/EntityFrameworkCore.Domain/Team.cs index 0ff4d58..f8aec7e 100644 --- a/EntityFrameworkCore.Domain/Team.cs +++ b/EntityFrameworkCore.Domain/Team.cs @@ -3,4 +3,6 @@ public class Team : BaseDomainModel { public string? Name { get; set; } + public int LeagueId { get; set; } + public int CoachId { get; set; } }