Replacement for JDIS Importer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
961 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace jdis_import.RESTObjects
  7. {
  8. public class Product
  9. {
  10. [JsonProperty(PropertyName = "Code")]
  11. public string Code { get; set; }
  12. [JsonProperty(PropertyName = "CreateDate")]
  13. public DateTime CreateDate { get; set; }
  14. [JsonProperty(PropertyName = "CreateUserID")]
  15. public int CreateUserID { get; set; }
  16. [JsonProperty(PropertyName = "Description")]
  17. public string Description { get; set; }
  18. [JsonProperty(PropertyName = "ID")]
  19. public int ID { get; set; }
  20. [JsonProperty(PropertyName = "IsActive")]
  21. public bool IsActive { get; set; }
  22. [JsonProperty(PropertyName = "UpdateDate")]
  23. public DateTime? UpdateDate { get; set; }
  24. [JsonProperty(PropertyName = "UpdateUserID")]
  25. public int? UpdateUserID { get; set; }
  26. }
  27. }