Added a new `OutResDto` record in the `ReC.Application.Common.Dto` namespace to represent output result data with properties like `Id`, `ActionId`, `Header`, `Body`, and audit fields. Added a new `ReadOutResQuery` class in the `ReC.Application.OutResults.Queries` namespace to facilitate querying output results based on `ProfileId` and `ActionId`.
21 lines
412 B
C#
21 lines
412 B
C#
namespace ReC.Application.Common.Dto;
|
|
|
|
public record OutResDto
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long ActionId { get; set; }
|
|
|
|
public string? Header { get; set; }
|
|
|
|
public string? Body { get; set; }
|
|
|
|
public string AddedWho { get; set; } = null!;
|
|
|
|
public DateTime AddedWhen { get; set; }
|
|
|
|
public string? ChangedWho { get; set; }
|
|
|
|
public DateTime? ChangedWhen { get; set; }
|
|
}
|