14 lines
346 B
C#
14 lines
346 B
C#
using Cortex.Mediator.Commands;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Lutra.Application.Verspakketten;
|
|
|
|
public sealed partial class CreateVerspakket
|
|
{
|
|
public sealed record Command(
|
|
string Naam,
|
|
int? PrijsInCenten,
|
|
[Range(1, 10)] int AantalPersonen,
|
|
Guid SupermarktId) : ICommand<Response>;
|
|
}
|