FriendInfoData.cs 331 B

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