Added three new nullable properties—Status (short), Message (string), and Header (string)—to the OutRes class to support additional metadata and state information.
27 lines
526 B
C#
27 lines
526 B
C#
namespace ReC.Domain.Entities;
|
|
|
|
public class OutRes
|
|
{
|
|
public long? Id { get; set; }
|
|
|
|
public long? ActionId { get; set; }
|
|
|
|
public RecAction? Action { get; set; }
|
|
|
|
public short? Status { get; set; }
|
|
|
|
public string? Message { 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; }
|
|
}
|