OpenAuth.Net/Infrastructure/Response.cs

16 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure
{
public class Response
{
public bool Status = true;
public string Message = "操作成功";
public dynamic Result;
}
}