mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
43 lines
911 B
C#
43 lines
911 B
C#
#nullable disable
|
|
using NadekoBot.Common.Yml;
|
|
using Cloneable;
|
|
|
|
namespace NadekoBot.Common;
|
|
|
|
[Cloneable]
|
|
public partial class ImageUrls : ICloneable<ImageUrls>
|
|
{
|
|
[Comment("DO NOT CHANGE")]
|
|
public int Version { get; set; } = 4;
|
|
|
|
public CoinData Coins { get; set; }
|
|
public Uri[] Currency { get; set; }
|
|
public Uri[] Dice { get; set; }
|
|
public RategirlData Rategirl { get; set; }
|
|
public XpData Xp { get; set; }
|
|
|
|
public SlotData Slots { get; set; }
|
|
|
|
public class SlotData
|
|
{
|
|
public Uri[] Emojis { get; set; }
|
|
public Uri Bg { get; set; }
|
|
}
|
|
|
|
public class CoinData
|
|
{
|
|
public Uri[] Heads { get; set; }
|
|
public Uri[] Tails { get; set; }
|
|
}
|
|
|
|
public class RategirlData
|
|
{
|
|
public Uri Matrix { get; set; }
|
|
public Uri Dot { get; set; }
|
|
}
|
|
|
|
public class XpData
|
|
{
|
|
public Uri Bg { get; set; }
|
|
}
|
|
} |