GMAPIData_AddNotice.cs 297 B

123456789101112
  1. namespace ET
  2. {
  3. public class GMAPIData_AddNotice
  4. {
  5. public int id { get; set; }
  6. public string title { get; set; }
  7. public long time { get; set; }
  8. public string content { get; set; }
  9. //为0表示全服
  10. public int server { get; set; }
  11. }
  12. }