12 lines
320 B
C#
12 lines
320 B
C#
namespace AvaloniaApplication3.Date;
|
|
|
|
public class Country
|
|
{
|
|
public int code { get; set; }
|
|
public string name { get; set; }
|
|
public bool flag { get; set; }
|
|
public string sec_code { get; set; }
|
|
public int id { get; set; }
|
|
public string en_name { get; set; }
|
|
public int code2 { get; set; }
|
|
} |