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

17 lines
387 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity
{
public class Event
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public DateTime Date { get; set; }
public int SeasonId { get; set; }
public Season Season { get; set; }
public bool Ranking { get; set; }
}
}