public TimeLimitedSite(string[] siteKeys, int limitInSeconds, int contLimitInSeconds)
 {
     limit = new DailyTimeLimit(limitInSeconds, contLimitInSeconds);
     this.siteKeys = siteKeys;
 }
 public WeekendOnlySite(string siteKey, DailyTimeLimit limit)
 {
     this.siteKey = siteKey;
     this.limit = limit;
 }
 public SiteContinuesTimeLimit()
 {
     this.limit = new DailyTimeLimit(SiteContinuousTimeLimitInSeconds, int.MaxValue);
     this.othesiteGameTime = 0;
 }