PrizeSetHelper.cs 448 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using System.Data;
  7. using System.Threading;
  8. using MySystem.PxcModels;
  9. namespace MySystem
  10. {
  11. public class PrizeSetHelper
  12. {
  13. public readonly static PrizeSetHelper Instance = new PrizeSetHelper();
  14. private PrizeSetHelper()
  15. { }
  16. public static void Do(string type, string no)
  17. {
  18. }
  19. }
  20. }