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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
-
- namespace jdis_import.RESTObjects
- {
- [JsonObject(MemberSerialization.OptIn)]
- public class Customer
- {
- [JsonProperty(PropertyName = "Address")]
- public string Address { get; set; }
- [JsonProperty(PropertyName = "Address2")]
- public string Address2 { get; set; }
- [JsonProperty(PropertyName = "City")]
- public string City { get; set; }
- [JsonProperty(PropertyName = "State")]
- public string State { get; set; }
- [JsonProperty(PropertyName = "Name")]
- public string Name { get; set; }
- [JsonProperty(PropertyName = "Number")]
- public string Number { get; set; }
- [JsonProperty(PropertyName = "ID")]
- public int ID { get; set; }
- [JsonProperty(PropertyName = "IsActive")]
- public bool IsActive { get; set; }
- [JsonProperty(PropertyName = "Phone1")]
- public string Phone1 { get; set; }
- [JsonProperty(PropertyName = "Phone2")]
- public string Phone2 { get; set; }
- [JsonProperty(PropertyName = "Fax")]
- public string Fax { get; set; }
- [JsonProperty(PropertyName = "CreateDate")]
- public DateTime CreateDate { get; set; }
- [JsonProperty(PropertyName = "CreateUserID")]
- public int CreateUserID { get; set; }
- [JsonProperty(PropertyName = "UpdateDate")]
- public DateTime? UpdateDate { get; set; }
- [JsonProperty(PropertyName = "UpdateUserID")]
- public int UpdateUserID { get; set; }
-
- }
- }
|