Sky.Net/API/Dtos/AddressDto.cs

17 lines
421 B
C#
Raw Normal View History

2022-05-19 19:33:40 -07:00
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; }
}
}