Introduced six new DTO record classes under ReC.Application.Common.Procedures.UpdateProcedure.Dto to support partial (nullable) updates for Action, Endpoint, EndpointAuth, EndpointParams, Profile, and Result entities. These DTOs enable PATCH-like update operations by allowing selective property updates. No existing code was modified.
9 lines
261 B
C#
9 lines
261 B
C#
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
|
|
|
|
public record UpdateResultDto
|
|
{
|
|
public long? ActionId { get; set; }
|
|
public short? StatusId { get; set; }
|
|
public string? Header { get; set; }
|
|
public string? Body { get; set; }
|
|
} |