Add generic type constraints to ListTransitionsRequest in Query.cs

This commit is contained in:
Ara 2024-04-29 13:37:09 +03:00
parent 599ffc3dc9
commit b9c79a4781
No known key found for this signature in database
GPG Key ID: 1C6152111F937091

View File

@ -2,6 +2,8 @@ namespace DIT.Workflower;
public sealed class ListTransitionsRequest<TState, TCommand, TContext>
where TState : struct
where TCommand : struct
{
public TState? From { get; set; }