Project files for the Acumatica Import for United Rentals
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
-
-
- 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; }
- }
- }
|