Backend/e-suite.Workflow.Core/Interfaces/IAssignees.cs

17 lines
324 B
C#

using e_suite.Workflow.Core.Attributes;
using System.ComponentModel.DataAnnotations;
namespace e_suite.Workflow.Core.Interfaces;
public interface IAssignees
{
}
[TaskCapability]
public interface IAssignees<T> : IAssignees where T : ITaskAssignee
{
[Required]
List<T> Assignees { get; set; }
}