10 lines
209 B
C#
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; }
|
|
|
|
} |