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.

14 lines
326 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace GMENepal.Model
  3. {
  4. public class GMECancelTransaction : GMECommonRequest
  5. {
  6. [Required]
  7. [MaxLength(20)]
  8. public string PinNo { get; set; }
  9. [Required]
  10. [MaxLength(500)]
  11. public string CancelRemarks { get; set; }
  12. }
  13. }