14 lines
376 B
C#
14 lines
376 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.Dtos
|
|
{
|
|
public class CustomerBasketDto
|
|
{
|
|
[Required]
|
|
public string Id { get; set; }
|
|
public List<BasketItemDto> Items { get; set; }
|
|
public int? DeliveryMethodId { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
public string PaymentItentId { get; set; }
|
|
}
|
|
} |