mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
15 lines
314 B
C#
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;
|
|
}
|
|
}
|
|
}
|