Browse Source

Fixed RpcChannelSummary accessibilities

tags/1.0-rc
RogueException 8 years ago
parent
commit
22e6b0f386
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Rpc/Entities/Channels/RpcChannelSummary.cs

+ 2
- 2
src/Discord.Net.Rpc/Entities/Channels/RpcChannelSummary.cs 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 ChannelType Type { get; set; }
public string Name { get; private set; }
public ChannelType Type { get; private set; }


internal RpcChannelSummary(ulong id) internal RpcChannelSummary(ulong id)
{ {


Loading…
Cancel
Save