using System;
using System.Collections.Generic;
using System.Text;
using UMC.Data;
namespace UMC.Proxy.Entities
{
public enum AccountModel
{
///
/// 标准账户
///
Standard = 0,
///
/// 需要托管密码
///
Changed = 1,
///
/// 由Check账户而来
///
Check = 2
}
public partial class Cookie : Record
{
///
/// 站点
///
public string Domain
{
get; set;
}
///
/// 服务密码
///
public Guid? user_id
{
get; set;
}
public string Cookies
{
get; set;
}
///
/// 个数
///
public int? IndexValue { get; set; }
///
/// 账户
///
public string Account
{
get; set;
}
public DateTime? Time
{
get; set;
}
///
/// 更新密码时间
///
public int? ChangedTime
{
get; set;
}
///
/// 最近登录时间
///
public int? LoginTime
{
get; set;
}
public int? Badge { get; set; }
public String Config { get; set; }
public AccountModel? Model { get; set; }
}
}