Command.cs 232 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Store.GameCatalog.Update;
  4. public sealed record Command(
  5. int ID,
  6. int Price,
  7. bool IsActive
  8. ) : ICommand<Result>;