GMAPIData_AddMail.cs 609 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class GMAPIData_AddMail
  5. {
  6. public long id { get; set; }
  7. public string title { get; set; }
  8. public long time { get; set; }
  9. public string content { get; set; }
  10. //为0表示全服
  11. public int server { get; set; }
  12. //玩家id,为0表示全部玩家
  13. public long roleId { get; set; }
  14. //为0时只发注册玩家,1表示新注册玩家也可以领取
  15. public int type { get; set; }
  16. //物品列表
  17. public List<GMAPIData_Item> items { get; set; }
  18. }
  19. }