* Removed cruft * Consolidated activity driver with activity * Incremental work on serialization * Incremental work on serialization * WIP * Incremental work on strongly typed defined workflows * Removed old samples and added new ones * Updated primitives and improved workflow builder API * WIP (broken) * Coded workflow API improvements * Fixed Email and Http libraries * Fixed start activity issue
12 lines
293 B
C#
12 lines
293 B
C#
namespace Elsa.Models
|
|
{
|
|
public class SourceEndpointDefinition : EndpointDefinition
|
|
{
|
|
public SourceEndpointDefinition(string activityId, string outcome) : base(activityId)
|
|
{
|
|
Outcome = outcome;
|
|
}
|
|
|
|
public string Outcome { get; }
|
|
}
|
|
} |