using MediatR; namespace ReC.Application.Common.Procedures; public record InsertObject : IRequest { public string Entity { get; set; } = null!; }