Sky.Net/API/Dtos/OrderDto.cs

14 lines
307 B
C#
Raw Normal View History

2022-05-24 15:35:03 -07:00
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; }
}
}