14 lines
311 B
C#
14 lines
311 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 02:47:11
|
|
* Version: 1.0.3
|
|
*/
|
|
|
|
class Address
|
|
{
|
|
public string Country { get; set; }
|
|
public string Region { get; set; }
|
|
public string City { get; set; }
|
|
} |