我有一个模型类正在关注
public bool Saturday{ get; set; }
public bool Sunday{ get; set; }
public string Holiday{ get; set; }
在其中我想使用周六和周日字段的假日字段使用RequiredIf 条件。我可以像下面这样使用吗
[RequiredIf("Sunday,Saturday",false)]
public string Holiday{ get; set; }
所以我不知道如何在我的模型类中使用RequiredIf条件,所以请有人帮助我