Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Season.cs
Darkstack 9a9d4c7053 Generic Service
JSON Reference loop
Events
2018-10-07 03:03:38 +02:00

20 lines
477 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity
{
public class Season
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public virtual IEnumerable<SeasonGame> Games { get; set; }
public virtual IEnumerable<Event> Event { get; set; }
}
}