Project files for the Acumatica Import for United Rentals
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

28 Zeilen
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. }