Skip to content

Commit aff5a6a

Browse files
committed
move BigInt around
1 parent 29feb1b commit aff5a6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ public abstract record RemoteValue
9797
}
9898
}
9999

100-
public record RemoteBigIntValue(string Value) : PrimitiveProtocolRemoteValue;
101-
102100
public record RemoteNumberValue(double Value) : PrimitiveProtocolRemoteValue;
103101

104102
public record RemoteBooleanValue(bool Value) : PrimitiveProtocolRemoteValue;
105103

104+
public record RemoteBigIntValue(string Value) : PrimitiveProtocolRemoteValue;
105+
106106
public record RemoteStringValue(string Value) : PrimitiveProtocolRemoteValue;
107107

108108
public record RemoteNullValue : PrimitiveProtocolRemoteValue;

0 commit comments

Comments
 (0)