namespace ReC.Application.Common.Dto; public record ResultViewDto { public long Id { get; init; } public OutResDto? Root { get; init; } public long? ActionId { get; init; } public RecActionViewDto? Action { get; init; } public long? ProfileId { get; init; } public ProfileViewDto? Profile { get; init; } public string? ProfileName { get; init; } public short? StatusCode { get; init; } public string? StatusName { get; init; } public string? Header { get; init; } public string? Body { get; init; } public string? AddedWho { get; init; } public DateTime? AddedWhen { get; init; } public string? ChangedWho { get; init; } public DateTime? ChangedWhen { get; init; } }