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.
 
 
 
 
 

42 lines
805 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
namespace Swift.API.Common.TrustDoc
{
public class Plan
{
public string id { get; set; }
public string name { get; set; }
public string segment = "";
}
public class Reason
{
public string target { get; set; }
public string code { get; set; }
public object detail { get; set; }
}
public class Selfie
{
public DateTime? submitted_at { get; set; }
}
public class ComparingData
{
public DateTime submitted_at { get; set; }
}
public class JsonTrustResponse: Reason
{
public HttpResponseMessage response { get; set; }
public object Data { get; set; }
}
}