Routine Update

This commit is contained in:
yubaolee
2015-11-03 00:22:54 +08:00
parent 55f334004e
commit 5fc7dd3466
4 changed files with 115 additions and 47 deletions

View 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;
}
}