Sky.Net/API/Dtos/OrderDto.cs
Charles Showalter 344ecb8762 Added Order API
2022-05-24 15:35:03 -07:00

14 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace API.Dtos
{
public class OrderDto
{
public string BasketId { get; set; }
public int DeliveryMethodId { get; set; }
public AddressDto ShipToAddress { get; set; }
}
}