using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YouZanSDKStandard.Api
{
///
/// 有赞
///
public class YouZanResponse
{
///
/// youzanyun code
///
public long code { get; set; }
///
/// youzanyun success
///
public bool success { get; set; }
///
/// youzanyun message
///
public string message { get; set; }
//public YZErrorResponse error_response { get; set; }
//public bool IsError { get; set; }
}
public class YZErrorResponse
{
public string code { get; set; }
public string msg { get; set; }
}
}