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

12 lines
268 B
C#

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