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

76 lines
2 KiB
C#

using System;
using System.Collections.Generic;
using Kreta.Enums.ManualEnums;
namespace Kreta.Web.Areas.Adminisztracio.Models
{
public class AdminDashboardModel
{
public AdminDashboardAdminisztracioModel AdminisztracioModel { get; set; }
public AdminDashboardNaploModel NaploModel { get; set; }
public AdminDashboardStatisztikaModel StatisztikaModel { get; set; }
public IList<AdminDashboardItemModel> DashboardUzenetek { get; set; }
public IList<string> EgyediAzonositokByIntezmeny { get; set; }
public AdminDashboardSzakkepzesiJuttatasokModel SzakkepzesiJuttatasokModel { get; set; }
public AdminDashboardTableModel Ugyek { get; set; }
}
public class AdminDashboardItemModel
{
public string Name { get; set; }
public string Content { get; set; }
public AdminDashboardTipusEnum Type { get; set; }
public int Sorrend { get; set; }
public string EgyediAzonosito { get; set; }
}
public class AdminDashboardPopupItemModel : AdminDashboardItemModel
{
public int DashboardUzenetFelhasznaloId { get; set; }
public int MegjelenitesekSzama { get; set; }
public DateTime? UtolsoMegtekintesIdeje { get; set; }
public string EgyediMuvelet { get; set; }
}
public class AdminDashboardTableModel
{
public string Name { get; set; }
public string Url { get; set; }
public bool OpenInNewWindow { get; set; }
public bool IsEnabled { get; set; }
public List<string> Headers { get; set; }
public List<AdminDashboardTableRowModel> Rows { get; set; }
}
public class AdminDashboardTableRowModel
{
public List<string> Columns { get; set; }
}
public class Ugy
{
public int Azonosito { get; set; }
public DateTime BekuldesIdopontja { get; set; }
public string TanuloNev { get; set; }
public string TanuloOsztaly { get; set; }
public string UgyTipusKod { get; set; }
}
}