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

10 lines
209 B
C#

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