Choto/AvaloniaApplication3/Date/Country.cs

12 lines
320 B
C#
Raw Normal View History

2025-01-22 13:32:07 +00:00
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; }
}