using System.Collections.Generic; using Kreta.Enums.ManualEnums; using Kreta.Web.Helpers.TabStrip; namespace Kreta.Web.Areas.Orarend.Models { public class TanoraNaplozasInfoTabok { public TanoraNaplozasInfoTabok(int? szervezetTipusId) { TabList = new List(); SzervezetTipusId = szervezetTipusId; } public List TabList { get; set; } //Ezek az attribútumok a modal fejlécéhez kellenek public int Oraszam { get; set; } public string Tantargy { get; set; } public string OsztalyCsoport { get; set; } public string Fejlec { get; set; } int? SzervezetTipusId { get; set; } } }