14 lines
307 B
C#
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; }
|
|
}
|
|
} |