20 lines
428 B
C#
20 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.WxEntity
|
|
{
|
|
public class Wx_Alive
|
|
{
|
|
[Key]
|
|
public string username { get; set; }
|
|
public DateTime lasttime { get; set; }
|
|
public string version { get; set; }
|
|
public string uin { get; set; }
|
|
public string forever_uin { get; set; }
|
|
|
|
|
|
}
|
|
}
|