44 lines
1 KiB
C#
44 lines
1 KiB
C#
using System.Collections.Generic;
|
|
using Kreta.Enums;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Models
|
|
{
|
|
public class BelepesKezeloModel
|
|
{
|
|
public BelepesKezeloModel()
|
|
{
|
|
Lehetosegek = new List<BelepesiLehetoseg>();
|
|
}
|
|
|
|
public string OrganizationName { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string ProfilImgSrc { get; set; }
|
|
|
|
public List<BelepesiLehetoseg> Lehetosegek { get; set; }
|
|
|
|
public string CancelLinkText { get; set; }
|
|
|
|
public string CancelLinkAction { get; set; }
|
|
|
|
public class BelepesiLehetoseg
|
|
{
|
|
public string Name { get; set; }
|
|
public SzerepkorTipusEnum Szerepkor { get; set; }
|
|
public LehetosegTipus Tipus { get; set; }
|
|
}
|
|
|
|
public enum LehetosegTipus
|
|
{
|
|
Kreta = 1,
|
|
DKT = 2,
|
|
Eugy = 3,
|
|
ESL = 4,
|
|
Fokusz = 5,
|
|
EJelentkezes = 6,
|
|
Leltar = 7,
|
|
Konyvtar = 8
|
|
}
|
|
}
|
|
}
|