SystemNoticeInfo.cs 272 B

123456789101112
  1. namespace ET
  2. {
  3. public class SystemNoticeInfo : Entity, IAwake<int>, IDestroy
  4. {
  5. public int NoticeId;
  6. public string Title;
  7. public long TimeSec;
  8. public string Content;
  9. //为0表示全服
  10. public int ServerId;
  11. }
  12. }