using System; using System.Collections.Generic; namespace Kreta.Web.Areas.OsztalyCsoport.Models { public class OsztalySorolasModel { public OsztalySorolasModel() { Lista = new List(); DatumLista = new List(); } public List Lista { get; set; } public List DatumLista { get; set; } } public class OsztalySorolasItemModel { public int Id { get; set; } public string Nev { get; set; } public int StartDivWidthPercent { get; set; } public int MiddleDivWidthPercent { get; set; } public int EndDivWidthPercent { get; set; } public DateTime StartDate { get; set; } public DateTime? EndDate { get; set; } } public class OsztalySorolasDateModel { public int ColNumber { get; set; } public DateTime Date { get; set; } } }