11 lines
298 B
C#
11 lines
298 B
C#
|
namespace AddressBookApi.Models;
|
||
|
|
||
|
public class Address
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public DateTime CreatedDateTime { get; set; }
|
||
|
public string? Name { get; set; }
|
||
|
public string? Street { get; set; }
|
||
|
public string? City { get; set; }
|
||
|
public string? PostCode { get; set; }
|
||
|
}
|