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.

11 lines
250 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace JMENepal.Model
  3. {
  4. public class JMETxStatus : CommonModel
  5. {
  6. public string PINNO { get; set; }
  7. [Required]
  8. public string AGENT_TXNID { get; set; }
  9. }
  10. }