1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.CardTrxManager
- {
- public class CloudCredential
- {
- public string UserName { get; set; }
- public string Password { get; set; }
- public string AuthServiceBaseUrl { get; set; }
- public string TransactionServiceBaseUrl { get; set; }
- public string DiscountServiceBaseUrl { get; set; }
- public string DeviceSN { get; set; }
- public string CurrentBuId { get; set; }
- }
- }
|