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; }
}