Skip to content

Commit 859d4d7

Browse files
kblokMeir017
authored andcommitted
Change property accessibility in ViewPortOptions (#435)
1 parent af26615 commit 859d4d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/PuppeteerSharp/ViewPortOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ public ViewPortOptions()
3434
/// Gets or sets the device scale factor.
3535
/// </summary>
3636
/// <value>Specify device scale factor (can be thought of as dpr). Defaults to 1.</value>
37-
public double DeviceScaleFactor { get; internal set; }
37+
public double DeviceScaleFactor { get; set; }
3838
/// <summary>
3939
/// Gets or sets if viewport is in landscape mode.
4040
/// </summary>
4141
///<value>Specifies if viewport is in landscape mode. Defaults to <c>false</c>.</value>
42-
public bool IsLandscape { get; internal set; }
42+
public bool IsLandscape { get; set; }
4343
/// <summary>
4444
/// Gets or sets if viewport supports touch events.
4545
/// </summary>
4646
/// <value>Specifies if viewport supports touch events. Defaults to <c>false</c>.</value>
47-
public bool HasTouch { get; internal set; }
47+
public bool HasTouch { get; set; }
4848
}
4949
}

0 commit comments

Comments
 (0)