You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
409 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace GMENepal.Model
  3. {
  4. public class GMEReconcileReport : GMECommonRequest
  5. {
  6. [MaxLength(1)]
  7. [Required]
  8. public string ReportType { get; set; }
  9. [MaxLength(50)]
  10. [Required]
  11. public string FromDate { get; set; }
  12. [MaxLength(50)]
  13. [Required]
  14. public string ToDate { get; set; }
  15. }
  16. }