File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 1+ using Newtonsoft . Json ;
12using System ;
23using System . Collections . Generic ;
3- using System . Runtime . Serialization ;
4- using JsonSubTypes ;
5- using Newtonsoft . Json ;
6- using Newtonsoft . Json . Converters ;
74
85namespace 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments