Add TeamId to Coach model.

This commit is contained in:
Kevin Matsubara 2025-04-07 10:16:41 +02:00
parent 1197b9ecea
commit 48afe784d6

View File

@ -3,5 +3,6 @@
public class Coach : BaseDomainModel
{
public string Name { get; set; } // Strings are automatically become VARCHAR database types.
public int? TeamId { get; set; }
}