File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public TimeRange() { }
26
26
/// </summary>
27
27
/// <param name="from">When the rule should start to be active, in Unix epoch time. (required).</param>
28
28
/// <param name="until">When the rule should stop to be active, in Unix epoch time. (required).</param>
29
- public TimeRange ( int from , int until )
29
+ public TimeRange ( long from , long until )
30
30
{
31
31
From = from ;
32
32
Until = until ;
@@ -37,14 +37,14 @@ public TimeRange(int from, int until)
37
37
/// </summary>
38
38
/// <value>When the rule should start to be active, in Unix epoch time.</value>
39
39
[ JsonPropertyName ( "from" ) ]
40
- public int From { get ; set ; }
40
+ public long From { get ; set ; }
41
41
42
42
/// <summary>
43
43
/// When the rule should stop to be active, in Unix epoch time.
44
44
/// </summary>
45
45
/// <value>When the rule should stop to be active, in Unix epoch time.</value>
46
46
[ JsonPropertyName ( "until" ) ]
47
- public int Until { get ; set ; }
47
+ public long Until { get ; set ; }
48
48
49
49
/// <summary>
50
50
/// Returns the string presentation of the object
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public TimeRange() { }
26
26
/// </summary>
27
27
/// <param name="from">When the rule should start to be active, in Unix epoch time. (required).</param>
28
28
/// <param name="until">When the rule should stop to be active, in Unix epoch time. (required).</param>
29
- public TimeRange ( int from , int until )
29
+ public TimeRange ( long from , long until )
30
30
{
31
31
From = from ;
32
32
Until = until ;
@@ -37,14 +37,14 @@ public TimeRange(int from, int until)
37
37
/// </summary>
38
38
/// <value>When the rule should start to be active, in Unix epoch time.</value>
39
39
[ JsonPropertyName ( "from" ) ]
40
- public int From { get ; set ; }
40
+ public long From { get ; set ; }
41
41
42
42
/// <summary>
43
43
/// When the rule should stop to be active, in Unix epoch time.
44
44
/// </summary>
45
45
/// <value>When the rule should stop to be active, in Unix epoch time.</value>
46
46
[ JsonPropertyName ( "until" ) ]
47
- public int Until { get ; set ; }
47
+ public long Until { get ; set ; }
48
48
49
49
/// <summary>
50
50
/// Returns the string presentation of the object
You can’t perform that action at this time.
0 commit comments