ChatData.cs 275 B

1234567891011
  1. namespace GFGGame
  2. {
  3. public class ChatData
  4. {
  5. public int Type;//ChatType
  6. public OtherRoleInfoData RoleInfo; //玩家信息
  7. public long TargetId; //私聊时需要
  8. public string Content; //内容
  9. public long Time; //时间
  10. }
  11. }