Repository URL to install this package:
Version:
2025.2.1 ▾
|
/*
* Copyright 2016- Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
using System.Collections.Generic;
using System.Linq;
using Gs2Cdk.Core.Model;
using Gs2Cdk.Gs2Schedule.Model;
using Gs2Cdk.Gs2Schedule.Model.Enums;
namespace Gs2Cdk.Gs2Schedule.Model.Options
{
public class RepeatSettingOptions {
public int? beginDayOfMonth;
public string beginDayOfMonthString;
public int? endDayOfMonth;
public string endDayOfMonthString;
public RepeatSettingBeginDayOfWeek? beginDayOfWeek;
public RepeatSettingEndDayOfWeek? endDayOfWeek;
public int? beginHour;
public string beginHourString;
public int? endHour;
public string endHourString;
public long? anchorTimestamp;
public string anchorTimestampString;
public int? activeDays;
public string activeDaysString;
public int? inactiveDays;
public string inactiveDaysString;
}
}