12345678910111213141516171819202122232425262728293031323334353637383940 |
- using CZFW.Framework.Model.ViewModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class HeaderModel
- {
- public NavigationModel NavigationModel { get; set; }
- public string SmallLogo { get; set; }
- public string BigLogo { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public bool IsLogin { get; set; } = false;
-
-
-
- public string Head_Url { get; set; }
-
-
-
- public string NickName { get; set; }
-
-
-
- public string BeforeUrl { get; set; }
- }
- }
|