Skip to content

Commit 94699e1

Browse files
Run dotnet format 🎨
1 parent 342a4d4 commit 94699e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+65
-65
lines changed

Src/Notion.Client/Api/ApiEndpoints.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ public static class BlocksApiUrls
2121
public static string AppendChildren(string blockId) => $"/v1/blocks/{blockId}/children";
2222
}
2323
}
24-
}
24+
}

Src/Notion.Client/Api/Blocks/BlocksClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Threading.Tasks;
44
using static Notion.Client.ApiEndpoints;

Src/Notion.Client/Api/Blocks/RequestParams/BlocksAppendChildrenParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
22

33
namespace Notion.Client
44
{

Src/Notion.Client/Api/Blocks/RequestParams/BlocksRetrieveChildrenParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Notion.Client
1+
namespace Notion.Client
22
{
33
public class BlocksRetrieveChildrenParameters : IBlocksRetrieveChildrenQueryParameters
44
{

Src/Notion.Client/Api/Databases/DatabasesClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
22
using System.Threading.Tasks;
33
using static Notion.Client.ApiEndpoints;
44

@@ -38,4 +38,4 @@ public async Task<PaginatedList<Page>> QueryAsync(string databaseId, DatabasesQu
3838
return await _client.PostAsync<PaginatedList<Page>>(DatabasesApiUrls.Query(databaseId), body);
3939
}
4040
}
41-
}
41+
}

Src/Notion.Client/Api/Databases/IDatabasesClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ public interface IDatabasesClient
88
Task<PaginatedList<Page>> QueryAsync(string databaseId, DatabasesQueryParameters databasesQueryParameters);
99
Task<PaginatedList<Database>> ListAsync(DatabasesListParameters databasesListParameters = null);
1010
}
11-
}
11+
}

Src/Notion.Client/Api/Databases/RequestParams/Sort.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Newtonsoft.Json;
1+
using Newtonsoft.Json;
22
using Newtonsoft.Json.Converters;
33

44
namespace Notion.Client

Src/Notion.Client/Extensions/HttpResponseMessageExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.IO;
1+
using System.IO;
22
using System.Net.Http;
33
using System.Threading.Tasks;
44
using Newtonsoft.Json;
@@ -32,4 +32,4 @@ internal static async Task<T> ParseStreamAsync<T>(this HttpResponseMessage respo
3232
}
3333
}
3434
}
35-
}
35+
}

Src/Notion.Client/Models/Blocks/Block.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JsonSubTypes;
1+
using JsonSubTypes;
22
using Newtonsoft.Json;
33
using Newtonsoft.Json.Converters;
44

Src/Notion.Client/Models/Blocks/BlockType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ public enum BlockType
3434
[EnumMember(Value = "unsupported")]
3535
Unsupported
3636
}
37-
}
37+
}

0 commit comments

Comments
 (0)