ApiConstants.cs 619 B

1234567891011121314151617
  1. namespace LotteryWebApp.Service
  2. {
  3. public class ApiConstants
  4. {
  5. public const string WEB = "WEB";
  6. public const string WALLET = "WALLET";
  7. public const string LOGIN = "LOGIN";
  8. public const string REGIST = "REGIST";
  9. public const string CANCEL = "CANCEL";
  10. public const string RESETPASS = "RESETPASS";
  11. public const string CHANGEPASS = "CHANGEPASS";
  12. public const string SERVICE_ID = "1";
  13. public const string WALLET_TOKEN = "xbdIk7T0KOO+o8W3ARwiCHBy6F3SrNl4sqmFkKLWRjhbgkrZ26KiSiwOXJW2Vg10a3jGqNqFbt+YqXgoXQDpaaP5zPt71pe9YKQ4rsqwz+E=";
  14. }
  15. }