kreta/KretaWeb/Areas/Tanulo/Models/OsztalySorolasModel.cs
2024-03-13 00:33:46 +01:00

36 lines
993 B
C#

using System;
using System.Collections.Generic;
namespace Kreta.Web.Areas.OsztalyCsoport.Models
{
public class OsztalySorolasModel
{
public OsztalySorolasModel()
{
Lista = new List<OsztalySorolasItemModel>();
DatumLista = new List<OsztalySorolasDateModel>();
}
public List<OsztalySorolasItemModel> Lista { get; set; }
public List<OsztalySorolasDateModel> 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; }
}
}