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.

10 lines
234 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace GMENepal.Model
  3. {
  4. public class GMEBankBranchRequest : GMECommonRequest
  5. {
  6. [MaxLength(50)]
  7. [Required]
  8. public string BankCode { get; set; }
  9. }
  10. }