是否可以创建一个类或类似的东西string
,可用于具有数据注释属性的差异模型?
型号代码:
public class Model1
{
public mytype type1 { get; set; }
public string type2 { get; set; }
}
public class Model2
{
public mytype type1 { get; set; }
public string type2 { get; set; }
}
基类
public class mytype
{
[StringLength(20)]
public string mytype { get; set; }
}