Project files for the Acumatica Import for United Rentals
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

28 wiersze
732 B

  1. namespace uri_import
  2. {
  3. public class Common
  4. {
  5. public EmailSettings Email { get; set; }
  6. public AcumaticaSettings Acumatica { get; set; }
  7. }
  8. public class EmailSettings
  9. {
  10. public string Username { get; set; }
  11. public string Password { get; set; }
  12. public int Mailbox { get; set; }
  13. public string Url { get; set; }
  14. public string Filter { get; set; }
  15. }
  16. public class AcumaticaSettings
  17. {
  18. public string Url { get; set; }
  19. public string Username { get; set; }
  20. public string Password { get; set; }
  21. public string Tenant { get; set; }
  22. public string Branch { get; set; }
  23. public string Locale { get; set; }
  24. }
  25. }