This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,76 @@
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; }
}
}