You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/PuppeteerSharp/GeolocationOption.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,17 +13,17 @@ public class GeolocationOption : IEquatable<GeolocationOption>
13
13
/// Latitude between -90 and 90.
14
14
/// </summary>
15
15
/// <value>The latitude.</value>
16
-
publicintLatitude{get;set;}
16
+
publicdecimalLatitude{get;set;}
17
17
/// <summary>
18
18
/// Longitude between -180 and 180.
19
19
/// </summary>
20
20
/// <value>The longitude.</value>
21
-
publicintLongitude{get;set;}
21
+
publicdecimalLongitude{get;set;}
22
22
/// <summary>
23
23
/// Optional non-negative accuracy value.
24
24
/// </summary>
25
25
/// <value>The accuracy.</value>
26
-
publicintAccuracy{get;set;}
26
+
publicdecimalAccuracy{get;set;}
27
27
28
28
/// <summary>
29
29
/// Determines whether the specified <see cref="PuppeteerSharp.GeolocationOption"/> is equal to the current <see cref="T:PuppeteerSharp.GeolocationOption"/>.
0 commit comments