42 lines
1006 B
C#
42 lines
1006 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Discord.Models
|
|
{
|
|
public class Channel
|
|
{
|
|
protected readonly DiscordClient _client;
|
|
private string _name;
|
|
|
|
public string Id { get; }
|
|
public string Name { get { return !IsPrivate ? _name : '@' + Recipient.Name; } internal set { _name = value; } }
|
|
|
|
public bool IsPrivate { get; internal set; }
|
|
public string Type { get; internal set; }
|
|
|
|
[JsonIgnore]
|
|
public string ServerId { get; }
|
|
[JsonIgnore]
|
|
public Server Server { get { return ServerId != null ? _client.GetServer(ServerId) : null; } }
|
|
|
|
[JsonIgnore]
|
|
public string RecipientId { get; internal set; }
|
|
public User Recipient { get { return _client.GetUser(RecipientId); } }
|
|
|
|
//Not Implemented
|
|
public object[] PermissionOverwrites { get; internal set; }
|
|
|
|
internal Channel(string id, string serverId, DiscordClient client)
|
|
{
|
|
Id = id;
|
|
ServerId = serverId;
|
|
_client = client;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
//return Name + " (" + Id + ")";
|
|
}
|
|
}
|
|
}
|