Command.cs 289 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Forum.Post.Update;
  4. public sealed record Command(
  5. int ID,
  6. int MemberID,
  7. int? BoardPrefixID,
  8. string Subject,
  9. string Content,
  10. bool IsSecret
  11. ) : ICommand<Result>;