Project files for the Acumatica Import for United Rentals
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
-
-
- 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; }
- }
- }
|