using Bootstrap.DataAccess;
using Bootstrap.Security;
using System.Security.Principal;
using System.Web;
namespace Bootstrap.Admin.Models
{
///
///
///
public class HeaderBarModel : ModelBase
{
public HeaderBarModel(IIdentity identity)
{
var user = BootstrapUser.RetrieveUserByUserName(identity.Name);
Icon = user.Icon;
DisplayName = user.DisplayName;
UserName = user.UserName;
Css = user.Css;
}
public string UserName { get; }
///
///
///
public string DisplayName { get; }
///
///
///
public string HomeUrl { get; set; }
///
/// 获得/设置 用户头像地址
///
public string Icon { get; }
///
///
///
public string Css { get; }
}
}