using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace framework_library { [Serializable] public class oPaymentResponse { public bool success { get; set; } public string redirectUrl { get; set; } public string reference { get; set; } } public class oCardRegisterResponse { public bool success { get; set; } public string token { get; set; } } public class oTransactionResponse { public bool success { get; set; } public string reference { get; set; } public string status { get; set; } public string message { get; set; } } }