Skip to content

Commit 694fcba

Browse files
Make Color nullable in select option
1 parent 4605da3 commit 694fcba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class SelectOption
3636
/// </summary>
3737
[JsonProperty("color")]
3838
[JsonConverter(typeof(StringEnumConverter))]
39-
public Color Color { get; set; }
39+
public Color? Color { get; set; }
4040
}
4141

4242
public enum Color

0 commit comments

Comments
 (0)