21 lines
540 B
C#
21 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Apis.Models
|
|
{
|
|
public class MailModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Desc { get; set; }
|
|
public bool IsRead { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public int Type { get; set; }
|
|
public int SendUserId { get; set; }
|
|
public string SendNickName { get; set; }
|
|
}
|
|
}
|