//------------------------------------------------------------------------------
//
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
//
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
///
/// 用户配置表
///
public partial class UserCfg
{
public UserCfg()
{
this.Id= 0;
this.Theme= string.Empty;
this.Skin= string.Empty;
this.NavBarStyle= string.Empty;
this.TabFocusColor= string.Empty;
this.NavTabIndex= 0;
}
///
/// 用户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; }
}
}