Files
nadekobot/NadekoBot.Core/Modules/Gambling/Common/Waifu/WaifuProfileTitle.cs
2021-09-06 21:29:22 +02:00

15 lines
314 B
C#

namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public struct WaifuProfileTitle
{
public int Count { get; }
public string Title { get; }
public WaifuProfileTitle(int count, string title)
{
Count = count;
Title = title;
}
}
}