using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HyperCube.Models { public class Event { public int ID { get; set; } public string Name { get; set; } public string Description { get; set; } public DateTime DateStart { get; set; } public DateTime DateEnd { get; set; } public DateTime DateCreated { get; set; } public DateTime DateUpdated { get; set; } public string CreatorID { get; set; } public bool IsActive { get; set; } } }