9 lines
195 B
C#
9 lines
195 B
C#
namespace Common.Dtos.Season;
|
|
|
|
public class CreateSeasonRequest
|
|
{
|
|
public string? Name { get; set; }
|
|
public DateOnly StartDate { get; set; }
|
|
public DateOnly EndDate { get; set; }
|
|
}
|