Added two new nullable string properties, Info and Error, to the OutResDto record to support additional informational and error messages in responses.
25 lines
491 B
C#
25 lines
491 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? Info { get; set; }
|
|
|
|
public string? Error { get; set; }
|
|
|
|
public string AddedWho { get; set; } = null!;
|
|
|
|
public DateTime AddedWhen { get; set; }
|
|
|
|
public string? ChangedWho { get; set; }
|
|
|
|
public DateTime? ChangedWhen { get; set; }
|
|
}
|