Project files for the Acumatica Import for United Rentals
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
-
-
- namespace uri_import
- {
- public class Common
- {
- public EmailSettings Email { get; set; }
- public AcumaticaSettings Acumatica { get; set; }
- }
- public class EmailSettings
- {
- public string Username { get; set; }
- public string Password { get; set; }
- public int Mailbox { get; set; }
- public string Url { get; set; }
- public string Filter { get; set; }
-
- }
- public class AcumaticaSettings
- {
- public string Url { get; set; }
- public string Username { get; set; }
- public string Password { get; set; }
- public string Tenant { get; set; }
- public string Branch { get; set; }
- public string Locale { get; set; }
- }
- }
|