22 lines
667 B
C#
22 lines
667 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Wx_HongBaoModel
|
|
{
|
|
public string sendid { get; set; }
|
|
public string sendusername { get; set; }
|
|
public string sendNickName { get; set; }
|
|
public string sendconremark { get; set; }
|
|
public string mntype { get; set; }
|
|
public string title { get; set; }
|
|
public string username { get; set; }
|
|
public string getNickName { get; set; }
|
|
public string getconremark { get; set; }
|
|
public DateTime? createtime { get; set; }
|
|
public DateTime? sendTime { get; set; }
|
|
}
|
|
}
|