15 lines
255 B
C#
15 lines
255 B
C#
using System;
|
|
|
|
namespace LaDOSE.Entity
|
|
{
|
|
public class Season
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
}
|
|
} |