blob: d3aee82f08c470291b965442421a876f1b0626ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
namespace VSH.Data.Payloads;
public record ValidateOrderPayload
{
public List<ProductValidationDto> Products { get; set; }
public class ProductValidationDto
{
public Guid Id { get; set; }
public int Count { get; set; }
}
}
|