Command.cs 298 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Crypto.News.Source.Update
  3. {
  4. public sealed record Command(
  5. int ID,
  6. string Name,
  7. string Url,
  8. string? Description,
  9. int IntervalMinutes,
  10. bool IsActive
  11. ) : ICommand;
  12. }