mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-03 19:15:03 +02:00
8 lines
170 B
C#
8 lines
170 B
C#
public class Address
|
|
{
|
|
public string? Building;
|
|
public string Street = string.Empty;
|
|
public string City = string.Empty;
|
|
public string Region = string.Empty;
|
|
}
|