GITLAB

NetMix / questionnaire-investigation

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • questionnaire-investigation
  • EduResearch
  • src
  • WeixinApi
  • Models
  • BaseResponse.cs
  • 149f15b6   first commit Browse Code »
    杨甜甜
    2020-11-10 15:59:54 +0800  
BaseResponse.cs 259 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
using Newtonsoft.Json;

namespace WeixinApi.Models
{
    public class BaseResponse
    {
        [JsonProperty("errcode")]
        public int ErrorCode { get; set; }
        [JsonProperty("errmsg")]
        public string ErrorMessage { get; set; } 
    }
}