Skip to content

Commit aaf5c7b

Browse files
Add support to update equation block
1 parent 6aae5e2 commit aaf5c7b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using Newtonsoft.Json;
2+
3+
namespace Notion.Client
4+
{
5+
public class EquationUpdateBlock : UpdateBlock, IUpdateBlock
6+
{
7+
[JsonProperty("equation")]
8+
public Data Equation { get; set; }
9+
10+
public class Data
11+
{
12+
[JsonProperty("expression")]
13+
public string Expression { get; set; }
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)