mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
18 lines
300 B
C#
18 lines
300 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class CountryCodeModel
|
|
{
|
|
public string name { get; set; }
|
|
|
|
public string area { get; set; }
|
|
|
|
public string description { get; set; }
|
|
|
|
public string code { get; set; }
|
|
|
|
public string id { get; set; }
|
|
|
|
public string displayName { get; set; }
|
|
}
|
|
}
|