init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
36
KretaWeb/Areas/Tanulo/Models/OsztalySorolasModel.cs
Normal file
36
KretaWeb/Areas/Tanulo/Models/OsztalySorolasModel.cs
Normal file
|
@ -0,0 +1,36 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue