Initial
This commit is contained in:
18
EstusShots.Shared/Models/Season.cs
Normal file
18
EstusShots.Shared/Models/Season.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace EstusShots.Shared.Models
|
||||
{
|
||||
public class Season
|
||||
{
|
||||
public Guid SeasonId { get; set; }
|
||||
|
||||
[MaxLength(50)] public string Game { get; set; } = default!;
|
||||
|
||||
public string? Description { get; set; }
|
||||
|
||||
public DateTime Start { get; set; }
|
||||
|
||||
public DateTime? End { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user