DataAnnotationsErrorViewModel.cs 300 B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. namespace BindingDemo.ViewModels
  3. {
  4. public class DataAnnotationsErrorViewModel
  5. {
  6. [Phone]
  7. [MaxLength(10)]
  8. public string PhoneNumber { get; set; }
  9. [Range(0, 9)]
  10. public int LessThan10 { get; set; }
  11. }
  12. }