//
//  XXGCountry.h
//  XXGPlayKit
//
//  Created by apple on 2025/3/16.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface XXGCountry : NSObject

@property (nonatomic, copy) NSString *xxpk_name;       // 国家名称
@property (nonatomic, copy) NSString *xxpk_countryCode; // 国家代码，如 "CN"
@property (nonatomic, copy) NSString *xxpk_dialCode;    // 区号，如 "+86"

@end

NS_ASSUME_NONNULL_END
