mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
23 lines
484 B
C#
23 lines
484 B
C#
#nullable disable
|
|
using NadekoBot.Db.Models;
|
|
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class WaifuUpdate : DbEntity
|
|
{
|
|
public int UserId { get; set; }
|
|
public DiscordUser User { get; set; }
|
|
public WaifuUpdateType UpdateType { get; set; }
|
|
|
|
public int? OldId { get; set; }
|
|
public DiscordUser Old { get; set; }
|
|
|
|
public int? NewId { get; set; }
|
|
public DiscordUser New { get; set; }
|
|
}
|
|
|
|
public enum WaifuUpdateType
|
|
{
|
|
AffinityChanged,
|
|
Claimed
|
|
} |