mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
10 lines
193 B
C#
10 lines
193 B
C#
namespace Infrastructure
|
|
{
|
|
public class Response
|
|
{
|
|
public bool Status = true;
|
|
public string Message = "操作成功";
|
|
public dynamic Result;
|
|
}
|
|
}
|