You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
702 B

using System;
namespace medical.transfomer.dto
{
public class Response
{
public ResponseHeader Header { get; set; }
public string Body { get; set; }
public string Signature { get; set; }
}
public class ResponseHeader
{
public string Version { get; set; }
public string SenderCode { get; set; }
public string ReceiverCode { get; set; }
public string MsgId { get; set; }
public string InfTime { get; set; }
public string ResultCode { get; set; }
public string ResultMsg { get; set; }
public string SignatureAlgorithm { get; set; }
public string EncryptionAlgorithm { get; set; }
}
}