12 lines
272 B
C#
12 lines
272 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]
|
|
List<T> Assignees { get; set; }
|
|
|
|
} |