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