Generic Service
JSON Reference loop Events
This commit is contained in:
17
LaDOSE.Src/LaDOSE.Entity/Event.cs
Normal file
17
LaDOSE.Src/LaDOSE.Entity/Event.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user