13 lines
257 B
C#
13 lines
257 B
C#
namespace GameList.Endpoints;
|
|
|
|
internal readonly record struct SuggestionInput(
|
|
string Name,
|
|
string? Genre,
|
|
string? Description,
|
|
string? ScreenshotUrl,
|
|
string? YoutubeUrl,
|
|
string? GameUrl,
|
|
int? MinPlayers,
|
|
int? MaxPlayers
|
|
);
|