using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Application.Tests.Dto; public class CapDto { } public class Message { public Headers Headers { get; set; } public T Value { get; set; } } public class Headers { public string CapCallbackName { get; set; } public string CapMsgId { get; set; } public string CapCorrId { get; set; } public string CapCorrSeq { get; set; } public string CapMsgName { get; set; } public string CapMsgType { get; set; } public string CapDelayTime { get; set; } public string CapSentTime { get; set; } public string CapMsgGroup { get; set; } public string CapExecInstanceId { get; set; } }