Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/ChannelManager.cs

31 lines
754 B
C#

using System.Collections.Generic;
using System.Linq;
namespace Maki
{
internal sealed class ChannelManager : BaseManager<DiscordChannel>
{
internal ChannelManager()
{
}
public DiscordChannel Id(ulong id)
{
lock (Collection)
return Collection.Where(x => x.Id == id).FirstOrDefault();
}
public bool Exists(ulong id)
{
lock (Collection)
return Collection.Where(x => x.Id == id).Count() > 0;
}
public IEnumerable<DiscordChannel> Server(DiscordServer server)
{
lock (Collection)
return Collection.Where(x => x.Server == server).OrderBy(x => x.Position);
}
}
}