123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace wispro.sp.web.Models
- {
- public class InputField
- {
- public string FieldName { get; set; }
- public string FieldType { get; set; }
- public string FieldValue { get; set; }
- public string MapObjectField { get; set; }
- }
- }
|