2018-10-06 13:05:38 +02:00
|
|
|
|
using System;
|
2018-10-06 14:16:42 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-10-06 13:05:38 +02:00
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Entity
|
|
|
|
|
|
{
|
2018-10-12 20:52:59 +02:00
|
|
|
|
public class Season : Context.Entity
|
2018-10-06 13:05:38 +02:00
|
|
|
|
{
|
2018-10-12 20:52:59 +02:00
|
|
|
|
|
2018-10-06 13:05:38 +02:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
|
2018-10-06 14:16:42 +02:00
|
|
|
|
public virtual IEnumerable<SeasonGame> Games { get; set; }
|
2018-10-07 03:03:38 +02:00
|
|
|
|
|
|
|
|
|
|
public virtual IEnumerable<Event> Event { get; set; }
|
2018-10-06 13:05:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|