Added default value support to medusa system, thanks to kotz

This commit is contained in:
Kwoth
2023-02-10 20:17:13 +01:00
parent 699a5e0c8c
commit 8ceab64b96
2 changed files with 7 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ public sealed record ParamData(
Type Type,
string Name,
bool IsOptional,
object? DefaultValue,
bool IsLeftover,
bool IsParams
);