Fixed RpcChannelSummary accessibilities

This commit is contained in:
RogueException
2017-03-22 04:34:17 -03:00
parent 3a45e9ec87
commit 22e6b0f386

View File

@@ -7,8 +7,8 @@ namespace Discord.Rpc
public class RpcChannelSummary public class RpcChannelSummary
{ {
public ulong Id { get; } public ulong Id { get; }
public string Name { get; set; } public string Name { get; private set; }
public ChannelType Type { get; set; } public ChannelType Type { get; private set; }
internal RpcChannelSummary(ulong id) internal RpcChannelSummary(ulong id)
{ {