Skip to content

Instantly share code, notes, and snippets.

@Adebayo-Adesegun
Created April 22, 2019 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adebayo-Adesegun/1a0297aec67e2a4b8503a9af8b33cb5c to your computer and use it in GitHub Desktop.
Save Adebayo-Adesegun/1a0297aec67e2a4b8503a9af8b33cb5c to your computer and use it in GitHub Desktop.
Response message class
using System;
using System.Collections.Generic;
using System.Text;
namespace KonnectAPIC
{
public class Response
{
public string status { get; set; }
public string error_code { get; set; }
public string error_reason { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment