Skip to content

Commit c6b5961

Browse files
committed
Add default constructor.
1 parent a0c3e82 commit c6b5961

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Penumbra/Api/HttpApi.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,10 @@ private record SetModSettingsData(
194194
bool? State,
195195
ModPriority? Priority,
196196
Dictionary<string, List<string>>? Settings)
197-
{ }
197+
{
198+
public SetModSettingsData()
199+
: this(null, string.Empty, string.Empty, null, null, null, null)
200+
{}
201+
}
198202
}
199203
}

0 commit comments

Comments
 (0)