Initial Commit

This commit is contained in:
2026-03-01 15:14:42 -04:00
commit f60174625e
377 changed files with 98166 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using SportsDivision.Domain.Enums;
namespace SportsDivision.Domain.Entities;
public class School
{
public int SchoolId { get; set; }
public string Name { get; set; } = string.Empty;
public string? ShortName { get; set; }
public SchoolLevel SchoolLevel { get; set; }
public int ZoneId { get; set; }
public bool IsActive { get; set; } = true;
public Zone Zone { get; set; } = null!;
public ICollection<Student> Students { get; set; } = new List<Student>();
}