using System.ComponentModel.DataAnnotations; namespace GMENepal.Model { public class GMECancelTransaction : GMECommonRequest { [Required] [MaxLength(20)] public string PinNo { get; set; } [Required] [MaxLength(500)] public string CancelRemarks { get; set; } } }