using System.Collections.Generic;
namespace Neo.Afx.Services.Workflows.Entities
{
///
/// Workflow instance participant custom class definition
///
public partial class WorkflowInstanceParticipant
{
///
/// Gets or sets the name of the workflow template participant field.
///
///
/// The name of the workflow template participant field.
///
public string WorkflowTemplateParticipantFieldName
{
get;
set;
}
///
/// Gets or sets the display name of the workflow template participant.
///
///
/// The display name of the workflow template participant.
///
public string WorkflowTemplateParticipantDisplayName
{
get;
set;
}
///
/// Gets or sets the workflow template participant static parameters.
///
///
/// The workflow template participant static parameters.
///
public List> WorkflowTemplateParticipantStaticParameters
{
get;
set;
}
///
/// Gets or sets a value indicating whether this instance is visible.
///
///
/// true if this instance is visible; otherwise, false.
///
public bool IsVisible
{
get;
set;
}
}
}