Format the project with 'dotnet format' (#2551)

* Sync and Re-Format

* Fix Title string.

* Fix indentation.
This commit is contained in:
NaN
2023-02-13 14:45:59 -03:00
committed by GitHub
parent 71e9ecb21e
commit 257f246d1d
401 changed files with 3178 additions and 2671 deletions

View File

@@ -4,7 +4,7 @@ namespace Discord.API.Gateway
{
internal class GuildRoleUpdateEvent
{
[JsonProperty("guild_id")]
[JsonProperty("guild_id")]
public ulong GuildId { get; set; }
[JsonProperty("role")]
public Role Role { get; set; }

View File

@@ -1,4 +1,4 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
namespace Discord.API.Gateway
{

View File

@@ -2,8 +2,8 @@ using Newtonsoft.Json;
namespace Discord.API.Gateway
{
internal class ResumedEvent
{
internal class ResumedEvent
{
[JsonProperty("heartbeat_interval")]
public int HeartbeatInterval { get; set; }
}

View File

@@ -3,12 +3,12 @@ using Newtonsoft.Json;
namespace Discord.API.Gateway
{
internal class VoiceServerUpdateEvent
{
[JsonProperty("guild_id")]
public ulong GuildId { get; set; }
{
[JsonProperty("guild_id")]
public ulong GuildId { get; set; }
[JsonProperty("endpoint")]
public string Endpoint { get; set; }
public string Endpoint { get; set; }
[JsonProperty("token")]
public string Token { get; set; }
public string Token { get; set; }
}
}