我有以下课程:
public class CreateJob
{
[Required]
public int JobTypeId { get; set; }
public string RequestedBy { get; set; }
public JobTask[] TaskDescriptions { get; set; }
}
我想在上面有一个数据注释,TaskDescriptions
以便数组必须包含至少一个元素?很像[Required]
。这可能吗?