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.

16 lines
356 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace GMENepal.Model
  3. {
  4. public class GMESendMoneyV2
  5. {
  6. public GMESendMoney GMESendMoney { get; set; }
  7. [MaxLength(50)]
  8. [Required]
  9. public string PCostRate { get; set; }
  10. [MaxLength(50)]
  11. [Required]
  12. public string SCostRate { get; set; }
  13. }
  14. }