11 lines
308 B
C#
11 lines
308 B
C#
namespace models.Core;
|
|
|
|
public class Season
|
|
{
|
|
public Guid Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
public List<Guid> EventIds { get; set; } = [];
|
|
} |