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.
6 lines
129 B
C#
6 lines
129 B
C#
namespace Elsa.Samples.AspNet.HangfireIntegration.Models;
|
|
|
|
public class SomeJobResult
|
|
{
|
|
public string Message { get; set; }
|
|
} |