| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- namespace SCC.Models
 
- {
 
-     
 
-     
 
-     
 
-     public class SCCConfig
 
-     {
 
-         
 
-         
 
-         
 
-         public string Name { get; set; }
 
-         
 
-         
 
-         
 
-         public string Area { get; set; }
 
-         
 
-         
 
-         
 
-         public string LotteryName { get; set; }
 
-         
 
-         
 
-         
 
-         public string MainUrl { get; set; }
 
-         
 
-         
 
-         
 
-         public string BackUrl { get; set; }
 
-         
 
-         
 
-         
 
-         public string KJTime { get; set; }
 
-         
 
-         
 
-         
 
-         public int StartHour { get; set; }
 
-         
 
-         
 
-         
 
-         public int StartMinute { get; set; }
 
-         
 
-         
 
-         
 
-         public int Interval { get; set; }
 
-         
 
-         
 
-         
 
-         public int TimesPerDay { get; set; }
 
-         
 
-         
 
-         
 
-         public string KJRate { get; set; }
 
-         
 
-         
 
-         
 
-         public string JobName { get; set; }
 
-         
 
-         
 
-         
 
-         public string JobGroup { get; set; }
 
-         
 
-         
 
-         
 
-         public string JobIdentityName { get; set; }
 
-         
 
-         
 
-         
 
-         public string TriggerIdentityName { get; set; }
 
-         
 
-         
 
-         
 
-         public string CronExpression { get; set; }
 
-         
 
-         
 
-         
 
-         public int MainUrlPages { get; set; }
 
-         
 
-         
 
-         
 
-         public int BackUrlPages { get; set; }
 
-         
 
-         
 
-         
 
-         public string SkipDate { get; set; }
 
-     }
 
- }
 
 
  |