mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
12 lines
362 B
C#
12 lines
362 B
C#
namespace DownKyi.Core.Settings.Models;
|
||
|
||
public class UserInfoSettings
|
||
{
|
||
public long Mid { get; set; }
|
||
public string Name { get; set; }
|
||
public bool IsLogin { get; set; } // 是否登录
|
||
public bool IsVip { get; set; } // 是否为大会员,未登录时为false
|
||
|
||
public string ImgKey { get; set; }
|
||
public string SubKey { get; set; }
|
||
} |