lcl 8 months ago
parent
commit
89540ada14
2 changed files with 23 additions and 0 deletions
  1. BIN
      AppStart/.DS_Store
  2. 23 0
      AppStart/Helper/PrizeSetHelper.cs

BIN
AppStart/.DS_Store


+ 23 - 0
AppStart/Helper/PrizeSetHelper.cs

@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using Library;
+using LitJson;
+using System.Linq;
+using System.Data;
+using System.Threading;
+using MySystem.PxcModels;
+
+namespace MySystem
+{
+    public class PrizeSetHelper
+    {
+        public readonly static PrizeSetHelper Instance = new PrizeSetHelper();
+        private PrizeSetHelper()
+        { }
+
+        public static void Do(string type, string no)
+        {
+            
+        }
+    }
+}