Command.cs 219 B

123456
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Developers.OverrideRateLimit;
  4. public sealed record Command(int AppID, int LimitPerMinute) : ICommand<Result>;