Introduced InsertObject record in ReC.Application.Common.Procedures namespace. This record implements MediatR's IRequest<long> and includes a non-nullable Entity property to support object insertion operations.
8 lines
160 B
C#
8 lines
160 B
C#
using MediatR;
|
|
|
|
namespace ReC.Application.Common.Procedures;
|
|
|
|
public record InsertObject : IRequest<long>
|
|
{
|
|
public string Entity { get; set; } = null!;
|
|
} |