Skip to content

Commit 424fc85

Browse files
Fix merge conflicts
1 parent fd4c0ec commit 424fc85

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,6 @@
22

33
namespace Notion.Client
44
{
5-
public interface IDatabasesUpdateBodyParameters
6-
{
7-
[JsonProperty("properties")]
8-
Dictionary<string, IUpdatePropertySchema> Properties { get; set; }
9-
10-
[JsonProperty("title")]
11-
List<RichTextBaseInput> Title { get; set; }
12-
13-
[JsonProperty("icon")]
14-
IPageIcon Icon { get; set; }
15-
16-
[JsonProperty("cover")]
17-
FileObject Cover { get; set; }
18-
19-
[JsonProperty("description")]
20-
string Description { get; set; }
21-
}
22-
235
public class DatabasesUpdateParameters : IDatabasesUpdateBodyParameters
246
{
257
public Dictionary<string, IUpdatePropertySchema> Properties { get; set; }

Src/Notion.Client/Api/Databases/RequestParams/DatabasesUpdateParameters/IDatabasesUpdateBodyParameters.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@ public interface IDatabasesUpdateBodyParameters
1919

2020
[JsonProperty("archived")]
2121
bool Archived { get; set; }
22+
23+
[JsonProperty("description")]
24+
string Description { get; set; }
2225
}
2326
}

0 commit comments

Comments
 (0)