10 lines
245 B
C#
10 lines
245 B
C#
namespace Aufgabe17.Models
|
|
{
|
|
public class Address
|
|
{
|
|
public string Street { get; set; }
|
|
public string City { get; set; }
|
|
public string StreetNumber { get; set; }
|
|
public int PostCode { get; set; }
|
|
}
|
|
} |