FriendInfoData.cs 391 B

1234567891011
  1. namespace GFGGame
  2. {
  3. public class FriendInfoData
  4. {
  5. public OtherRoleInfoData roleInfo;
  6. public OtherRoleInfoDetailData roleDetailInfo;
  7. public int type;//好友关系类型,由FriendType枚举
  8. public int giveGiftState;//赠送状态,由ConstGiveGiftStatus枚举
  9. public int takeGiftState;//领取赠送状态,由ConstBonusStatus枚举
  10. }
  11. }