using MediatR; namespace Events.WebAPI.Contract.Command; public class AddCommand(TDto dto) : IRequest { public TDto Dto { get; set; } = dto; }