mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
10 lines
181 B
C#
10 lines
181 B
C#
namespace Nadeko.Medusa;
|
|
|
|
public sealed record ParamData(
|
|
Type Type,
|
|
string Name,
|
|
bool IsOptional,
|
|
object? DefaultValue,
|
|
bool IsLeftover,
|
|
bool IsParams
|
|
); |