Skip to content

Commit 7df5396

Browse files
Formula property can now be created & updated in database
1 parent fd80df4 commit 7df5396

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Notion.Client
2+
{
3+
public class FormulaPropertySchema : IPropertySchema
4+
{
5+
public Formula Formula { get; set; }
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Notion.Client
2+
{
3+
public class FormulaUpdatePropertySchema : IUpdatePropertySchema
4+
{
5+
public Formula Formula { get; set; }
6+
}
7+
}

0 commit comments

Comments
 (0)