CloudCredential.cs 525 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.CardTrxManager
  5. {
  6. public class CloudCredential
  7. {
  8. public string UserName { get; set; }
  9. public string Password { get; set; }
  10. public string AuthServiceBaseUrl { get; set; }
  11. public string TransactionServiceBaseUrl { get; set; }
  12. public string DiscountServiceBaseUrl { get; set; }
  13. public string DeviceSN { get; set; }
  14. public string CurrentBuId { get; set; }
  15. }
  16. }