using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Discord { /// /// Represents a channel that is of an unrecognized type. /// internal sealed class MockedInvalidChannel : IChannel { public string Name => throw new NotImplementedException(); public DateTimeOffset CreatedAt => throw new NotImplementedException(); public ulong Id => throw new NotImplementedException(); public Task GetUserAsync(ulong id, CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null) { throw new NotImplementedException(); } public IAsyncEnumerable> GetUsersAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null) { throw new NotImplementedException(); } } }