Skip to content

Commit c40bd3b

Browse files
Fix: The code must not contain multiple blank lines in a row.
1 parent b889209 commit c40bd3b

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Src/Notion.Client/Models/Database/Database.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
using Newtonsoft.Json;
12
using System;
23
using System.Collections.Generic;
3-
using System.Runtime.Serialization;
4-
using JsonSubTypes;
5-
using Newtonsoft.Json;
6-
using Newtonsoft.Json.Converters;
74

85
namespace Notion.Client
96
{
@@ -18,7 +15,6 @@ public class DatabasesListParameters : IDatabasesListQueryParmaters
1815
public string PageSize { get; set; }
1916
}
2017

21-
2218
public interface IDatabaseQueryBodyParameters : IPaginationParameters
2319
{
2420
Filter Filter { get; set; }
@@ -32,7 +28,6 @@ public class DatabasesQueryParameters : IDatabaseQueryBodyParameters
3228
public string StartCursor { get; set; }
3329
public string PageSize { get; set; }
3430
}
35-
3631
public class Database
3732
{
3833
public string Object => "database";
@@ -41,7 +36,6 @@ public class Database
4136
[JsonProperty("created_time")]
4237
public DateTime CreatedTime { get; set; }
4338

44-
4539
[JsonProperty("last_edited_time")]
4640
public DateTime LastEditedTime { get; set; }
4741

Src/Notion.Client/Models/PropertyValue/PhoneNumberPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ public class PhoneNumberPropertyValue : PropertyValue
66
{
77
public override PropertyValueType Type => PropertyValueType.PhoneNumber;
88

9-
109
[JsonProperty("phone_number")]
1110
public string PhoneNumber { get; set; }
1211
}

0 commit comments

Comments
 (0)