Refactor: Rename RecResultViewDto to ResultViewDto

Replaced all usage of RecResultViewDto with ResultViewDto for improved naming consistency. Updated AutoMapper profile to map ResultView to ResultViewDto. Removed RecResultViewDto.cs and added ResultViewDto.cs with the same properties. No functional changes.
This commit is contained in:
2025-12-15 16:57:05 +01:00
parent 5a4b8427be
commit 152189fefd
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
namespace ReC.Application.Common.Dto;
public record ResultViewDto
{
public long Id { get; set; }
public long? ActionId { get; set; }
public RecActionViewDto? Action { get; set; }
public long? ProfileId { get; set; }
public ProfileViewDto? Profile { get; set; }
public string? ProfileName { get; set; }
public short? StatusCode { get; set; }
public string? StatusName { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }
public string? AddedWho { get; set; }
public DateTime? AddedWhen { get; set; }
public string? ChangedWho { get; set; }
public DateTime? ChangedWhen { get; set; }
}