14 lines
406 B
C#
14 lines
406 B
C#
using VPKI.Library.Packet;
|
|
|
|
namespace VPKI.Web.Client.Model
|
|
{
|
|
public class VerifyResultContainer
|
|
{
|
|
public Request_Verifyresult RequestVerifyresult { get; set; } = new();
|
|
public Response_Verifyresult ResponseVerifyresult { get; set; } = new();
|
|
|
|
public string StrRequest { get; set; } = string.Empty;
|
|
public string StrResponse { get; set; } = string.Empty;
|
|
}
|
|
}
|