コード例 #1
0
ファイル: Response.cs プロジェクト: jiguixin/MyLibrary
        public Response(ApplicationMessageKind code, ResponseActionKind action, string msg)
        {
            Code = code;
            Message = msg;

            Action = action;
        }
コード例 #2
0
ファイル: Response.cs プロジェクト: jiguixin/MyLibrary
 public Response(ApplicationMessageKind code, string msg)
 {
     Code = code;
     Message = msg;
     Action = null;
 }