mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-19 18:22:11 +08:00
Routine Update
This commit is contained in:
@@ -62,6 +62,7 @@
|
||||
<Compile Include="LogHelper.cs" />
|
||||
<Compile Include="PredicateBuilder.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Response.cs" />
|
||||
<Compile Include="SessionHelper.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
15
Infrastructure/Response.cs
Normal file
15
Infrastructure/Response.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user