JavaApiSetFields.cs 423 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PxcModels
  4. {
  5. public partial class JavaApiSetFields
  6. {
  7. public int Id { get; set; }
  8. public string TargetFieldType { get; set; }
  9. public string TargetFieldName { get; set; }
  10. public string SourceFieldTitle { get; set; }
  11. public string SourceFieldName { get; set; }
  12. public int ApiId { get; set; }
  13. }
  14. }