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; }
}
}