mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
304 B
C#
10 lines
304 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Searches.Services;
|
|
|
|
public sealed class DefineData
|
|
{
|
|
public required string Definition { get; init; }
|
|
public required string Example { get; init; }
|
|
public required string WordType { get; init; }
|
|
public required string Word { get; init; }
|
|
} |