init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
35
KretaWeb/Models/LayoutModel.cs
Normal file
35
KretaWeb/Models/LayoutModel.cs
Normal file
|
@ -0,0 +1,35 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Web.Models
|
||||
{
|
||||
public class LayoutModel
|
||||
{
|
||||
public string OrganizationName { get; set; }
|
||||
public string HomePageUrl { get; set; }
|
||||
public LayoutUserMenu UserMenu { get; set; }
|
||||
}
|
||||
|
||||
public class LayoutUserMenu
|
||||
{
|
||||
public string UserName { get; set; }
|
||||
public string MessageCount { get; set; }
|
||||
public string InboxUrl { get; set; }
|
||||
public string EventUrl { get; set; }
|
||||
public string AdminHomePageUrl { get; set; }
|
||||
public string EventCount { get; set; }
|
||||
public string NemNaplozottTanorakCount { get; set; }
|
||||
public string NemNaplozottTanorakUrl { get; set; }
|
||||
public string ProfilImgSrc { get; set; }
|
||||
public IList<LayoutUserMenuItem> UserMenuItems { get; set; }
|
||||
public int NeedPopupId { get; set; }
|
||||
public string NeedPopupAzonosito { get; set; }
|
||||
}
|
||||
|
||||
public class LayoutUserMenuItem
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Url { get; set; }
|
||||
public string CssClass { get; set; }
|
||||
public string ClientAction { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue