mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 07:38:01 +08:00
16 lines
401 B
C#
16 lines
401 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace OpenAuth.Domain
|
||
|
{
|
||
|
public partial class UserCfg
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string Theme { get; set; }
|
||
|
public string Skin { get; set; }
|
||
|
public string NavBarStyle { get; set; }
|
||
|
public string TabFocusColor { get; set; }
|
||
|
public int NavTabIndex { get; set; }
|
||
|
}
|
||
|
}
|