InputField.cs 369 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace wispro.sp.web.Models
  6. {
  7. public class InputField
  8. {
  9. public string FieldName { get; set; }
  10. public string FieldType { get; set; }
  11. public string FieldValue { get; set; }
  12. public string MapObjectField { get; set; }
  13. }
  14. }