Command.cs 275 B

12345678
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Studio.Settlement.DeleteAccount;
  4. public sealed record Command(int MemberID, int AccountID) : ICommand<Result<Response>>;
  5. public sealed record Response(string Message);