addressbookapi/Models/Address.cs

11 lines
298 B
C#
Raw Normal View History

2023-01-04 17:37:30 +00:00
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; }
}