mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
14 lines
354 B
C#
14 lines
354 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class PollVote : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public int VoteIndex { get; set; }
|
|
|
|
public override int GetHashCode()
|
|
=> UserId.GetHashCode();
|
|
|
|
public override bool Equals(object obj)
|
|
=> obj is PollVote p ? p.UserId == UserId : false;
|
|
} |