using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class UserCfg { /// /// 用户ID /// /// public int Id { get; set; } /// /// 用户界面主题 /// /// public string Theme { get; set; } /// /// 用户界面皮肤 /// /// public string Skin { get; set; } /// /// 导航条按钮风格 /// /// public string NavBarStyle { get; set; } /// /// Tab高亮颜色 /// /// public string TabFocusColor { get; set; } /// /// 导航缺省活动页 /// /// public int NavTabIndex { get; set; } public UserCfg() { this.Id= 0; this.Theme= string.Empty; this.Skin= string.Empty; this.NavBarStyle= string.Empty; this.TabFocusColor= string.Empty; this.NavTabIndex= 0; } } }