Choto/AvaloniaApplication3/Date/Country.cs
2025-01-22 16:32:07 +03:00

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; }
}