ConnectionInfo.cs 474 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier
  5. {
  6. public class ConnectionInfo
  7. {
  8. public string UserName { get; set; }
  9. public string Password { get; set; }
  10. public string AuthServiceBaseUrl { get; set; }
  11. public string AccountServiceBaseUrl { get; set; }
  12. public string AccountServiceRelativeUrl { get; set; }
  13. public string DeviceSN { get; set; }
  14. }
  15. }