Add Status, Message, and Header to OutRes class

Added three new nullable properties—Status (short), Message (string), and Header (string)—to the OutRes class to support additional metadata and state information.
This commit is contained in:
2025-12-12 01:25:29 +01:00
parent fe40cd001f
commit 134a808633

View File

@@ -8,6 +8,10 @@ public class OutRes
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; }