mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
25 lines
686 B
C#
25 lines
686 B
C#
// ***********************************************************************
|
|
// Assembly : OpenAuth.App
|
|
// Author : yubaolee
|
|
// Created : 09-05-2016
|
|
//
|
|
// Last Modified By : yubaolee
|
|
// Last Modified On : 09-05-2016
|
|
// Contact : Microsoft
|
|
// File: CommandModel.cs
|
|
// ***********************************************************************
|
|
|
|
using OptimaJet.Workflow.Core.Model;
|
|
|
|
namespace OpenAuth.App.Response
|
|
{
|
|
/// <summary>
|
|
/// workflow命令
|
|
/// </summary>
|
|
public class CommandModel
|
|
{
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
public TransitionClassifier Classifier { get; set; }
|
|
}
|
|
} |