11 lines
253 B
C#
11 lines
253 B
C#
using Elsa.Workflows;
|
|
|
|
namespace SampleDropIn.Activities;
|
|
|
|
public class SampleActivity : CodeActivity
|
|
{
|
|
protected override void Execute(ActivityExecutionContext context)
|
|
{
|
|
Console.WriteLine("Hello, world! From SampleDropIn!");
|
|
}
|
|
} |