Files
nadekobot/NadekoBot.Core/Services/Database/Models/UnmuteTimer.cs
2021-09-06 21:29:22 +02:00

21 lines
466 B
C#

using System;
namespace NadekoBot.Core.Services.Database.Models
{
public class UnmuteTimer : DbEntity
{
public ulong UserId { get; set; }
public DateTime UnmuteAt { get; set; }
public override int GetHashCode() =>
UserId.GetHashCode();
public override bool Equals(object obj)
{
return obj is UnmuteTimer ut
? ut.UserId == UserId
: false;
}
}
}