21 lines
429 B
C#
21 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MessageSupervises.Entitys
|
|
{
|
|
public class user_mess_temp
|
|
{
|
|
/// <summary>
|
|
/// 消息
|
|
/// </summary>
|
|
public string mess_md5 { get; set; }
|
|
/// <summary>
|
|
/// 累计消息数量
|
|
/// </summary>
|
|
public int count { get; set; }
|
|
}
|
|
}
|