35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LiveTools
|
|||
|
{
|
|||
|
public class UserInfo
|
|||
|
{
|
|||
|
public string NickName { get; set; } = "";
|
|||
|
public string UserId { get; set; } = "";
|
|||
|
public string Pwd { get; set; } = "";
|
|||
|
public string Tokens { get; set; } = "";
|
|||
|
public long OutTime { get; set; } = 0;
|
|||
|
public int isOut { get; set; } = 0;
|
|||
|
public string OutDateStr { get; set; } = "";
|
|||
|
/// <summary>
|
|||
|
/// 价格广告
|
|||
|
/// </summary>
|
|||
|
public string PriceAds { get; set; } = "";
|
|||
|
/// <summary>
|
|||
|
///购买联系方式
|
|||
|
/// </summary>
|
|||
|
public string BuyContact { get; set; } = "";
|
|||
|
public string Setting { get; set; } = "";
|
|||
|
public string Sys_Setting { get; set; } = "";
|
|||
|
public string Parent_Setting { get; set; } = "";
|
|||
|
public string Ads_id { get; set; } = "";
|
|||
|
public string Media_id { get; set; } = "";
|
|||
|
public long LoginTime { get; set; } = 0;
|
|||
|
public string Cookie { get; set; } = "";
|
|||
|
}
|
|||
|
}
|