|
12345678910111213141516171819202122232425262728 |
-
-
- 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; }
- }
- }
|