Project files for the Acumatica Import for United Rentals
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.
|
-
-
- 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; }
- }
- }
|