elsa-core/samples/Elsa.Samples.AspNet.HangfireIntegration/Models/SomeJobResult.cs
Sipke Schoorstra a397b6799e Add new sample project for ASP.NET Hangfire Integration
Introduced a new sample project to demonstrate ASP.NET integration with Hangfire, including setup configurations in `appsettings.json`, program initialization, and a background job activity. This will serve as a reference implementation for integrating Elsa with Hangfire in ASP.NET applications.
2024-11-04 11:59:47 +01:00

6 lines
129 B
C#

namespace Elsa.Samples.AspNet.HangfireIntegration.Models;
public class SomeJobResult
{
public string Message { get; set; }
}