mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
13 lines
343 B
C#
13 lines
343 B
C#
#nullable disable warnings
|
|
using Cloneable;
|
|
|
|
namespace NadekoBot.Modules.Xp.Services;
|
|
|
|
[Cloneable]
|
|
public sealed partial class UserXpGainData : ICloneable<UserXpGainData>
|
|
{
|
|
public IGuildUser User { get; init; }
|
|
public IGuild Guild { get; init; }
|
|
public IMessageChannel Channel { get; init; }
|
|
public int XpAmount { get; set; }
|
|
} |