32 lines
906 B
C#
Raw Normal View History

namespace NadekoBot.Core.Services.Database.Models
2016-09-01 02:17:48 +02:00
{
public class FollowedStream : DbEntity
{
public ulong ChannelId { get; set; }
public string Username { get; set; }
public FollowedStreamType Type { get; set; }
public ulong GuildId { get; set; }
public enum FollowedStreamType
{
2017-08-06 17:34:52 +02:00
Twitch, Smashcast, Mixer
2016-09-01 02:17:48 +02:00
}
public override int GetHashCode() =>
2016-12-03 18:59:38 +01:00
ChannelId.GetHashCode() ^
Username.GetHashCode() ^
Type.GetHashCode();
public override bool Equals(object obj)
{
var fs = obj as FollowedStream;
if (fs == null)
return false;
2016-12-03 18:59:38 +01:00
return fs.ChannelId == ChannelId &&
fs.Username.ToLowerInvariant().Trim() == Username.ToLowerInvariant().Trim() &&
fs.Type == Type;
}
2016-09-01 02:17:48 +02:00
}
}