| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- namespace ET
- {
- public class GMAPIData_AddMail
- {
- public long id { get; set; }
- public string title { get; set; }
- public long time { get; set; }
- public string content { get; set; }
- //为0表示全服
- public int server { get; set; }
- //玩家id,为0表示全部玩家
- public long roleId { get; set; }
- //为0时只发注册玩家,1表示新注册玩家也可以领取
- public int type { get; set; }
- //物品列表
- public List<GMAPIData_Item> items { get; set; }
- }
- }
|