NativePayView.cs 330 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ExaminationApply
  6. {
  7. public class NativePayView
  8. {
  9. public Guid ExaminationRegistrationID { get; set; }
  10. public decimal Fee { get; set; }
  11. public string FeeTypeName { get; set; }
  12. }
  13. }