Backend/e-suite.Workflow.Core/Interfaces/IAssignees.cs
2026-01-20 21:50:10 +00:00

10 lines
189 B
C#

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