17 lines
421 B
C#
17 lines
421 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace API.Dtos
|
||
|
{
|
||
|
public class AddressDto
|
||
|
{
|
||
|
public string FirstName { get; set; }
|
||
|
public string LastName { get; set; }
|
||
|
public string Street { get; set; }
|
||
|
public string City { get; set; }
|
||
|
public string State { get; set; }
|
||
|
public string ZipCode { get; set; }
|
||
|
}
|
||
|
}
|