15 lines
328 B
C#
15 lines
328 B
C#
using System.Collections.Generic;
|
|
using Kreta.Web.Helpers.TabStrip;
|
|
|
|
namespace Kreta.Web.Areas.Orarend.Models
|
|
{
|
|
public class InformaciokOra
|
|
{
|
|
public InformaciokOra()
|
|
{
|
|
TabList = new List<TabStripItemModel>();
|
|
}
|
|
|
|
public List<TabStripItemModel> TabList { get; set; }
|
|
}
|
|
}
|