OpenAuth.Net/Infrastructure/Response.cs

16 lines
316 B
C#
Raw Normal View History

using System;
2015-11-03 00:22:54 +08:00
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;
}
}