mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01: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;
|
|
}
|