📅  最后修改于: 2022-03-11 14:49:12.328000             🧑  作者: Mango
using System.ComponentModel.DataAnnotations;
{
[Required(ErrorMessage = "DocumentType is required.")]
public string DocumentType
{
get { return _documentType; }
set { _documentType = value; }
}
}