| 12345678910111213 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Crypto.News.Source.Update
- {
- public sealed record Command(
- int ID,
- string Name,
- string Url,
- string? Description,
- int IntervalMinutes,
- bool IsActive
- ) : ICommand;
- }
|