Skip to content

Commit 1cd2872

Browse files
committed
Remove init access modifier
1 parent 37f6708 commit 1cd2872

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotnet/src/webdriver/Response.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@ public static Response FromJson(string value)
121121
/// <summary>
122122
/// Gets or sets the value from JSON.
123123
/// </summary>
124-
public object? Value { get; init; }
124+
public object? Value { get; }
125125

126126
/// <summary>
127127
/// Gets or sets the session ID.
128128
/// </summary>
129-
public string? SessionId { get; init; }
129+
public string? SessionId { get; }
130130

131131
/// <summary>
132132
/// Gets or sets the status value of the response.
133133
/// </summary>
134-
public WebDriverResult Status { get; init; }
134+
public WebDriverResult Status { get; }
135135

136136
/// <summary>
137137
/// Returns a new <see cref="Response"/> from a JSON-encoded string.

0 commit comments

Comments
 (0)