BasicKnowledgeCSharp/LessonsAndTasks/Lesson 70 - синтаксис инициализации объектов класса/Address.cs

6 lines
136 B
C#
Raw Permalink Normal View History

2024-10-05 09:59:53 +03:00
class Address
{
public string Country { get; set; }
public string Region { get; set; }
public string City { get; set; }
}