This is My Model:
public class PhoneNumber {
public long Id { get; set; }
public string Tel1 { get; set; }
public string Tel2 { get; set; }
}
How can I force Clients in create action to fill at least One Tel (Tel1 or Tel2), I don't want to use any Clients Script, Or Controller Code, I just interested in use some attributes in above Model like [Required] to achieve this goal?