Skip to content

Commit b889209

Browse files
Fix: A closing curly bracket must not be preceded by a blank line.
1 parent e256ff1 commit b889209

16 files changed

+0
-16
lines changed

Src/Notion.Client/Models/PropertyValue/CheckboxPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ public class CheckboxPropertyValue : PropertyValue
66

77
public bool Checkbox { get; set; }
88
}
9-
109
}

Src/Notion.Client/Models/PropertyValue/CreatedByPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ public class CreatedByPropertyValue : PropertyValue
99
[JsonProperty("created_by")]
1010
public User CreatedBy { get; set; }
1111
}
12-
1312
}

Src/Notion.Client/Models/PropertyValue/CreatedTimePropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ public class CreatedTimePropertyValue : PropertyValue
99
[JsonProperty("created_time")]
1010
public string CreatedTime { get; set; }
1111
}
12-
1312
}

Src/Notion.Client/Models/PropertyValue/EmailPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ public class EmailPropertyValue : PropertyValue
66

77
public string Email { get; set; }
88
}
9-
109
}

Src/Notion.Client/Models/PropertyValue/LastEditedByPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ public class LastEditedByPropertyValue : PropertyValue
99
[JsonProperty("last_edited_by")]
1010
public User LastEditedBy { get; set; }
1111
}
12-
1312
}

Src/Notion.Client/Models/PropertyValue/LastEditedTimePropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ public class LastEditedTimePropertyValue : PropertyValue
99
[JsonProperty("last_edited_time")]
1010
public string LastEditedTime { get; set; }
1111
}
12-
1312
}

Src/Notion.Client/Models/PropertyValue/MultiSelectPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ public class MultiSelectPropertyValue : PropertyValue
1010
[JsonProperty("multi_select")]
1111
public List<SelectOption> MultiSelect { get; set; }
1212
}
13-
1413
}

Src/Notion.Client/Models/PropertyValue/NumberPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ public class NumberPropertyValue : PropertyValue
55
public override PropertyValueType Type => PropertyValueType.Number;
66
public double Number { get; set; }
77
}
8-
98
}

Src/Notion.Client/Models/PropertyValue/PeoplePropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ public class PeoplePropertyValue : PropertyValue
77
public override PropertyValueType Type => PropertyValueType.People;
88
public List<User> People { get; set; }
99
}
10-
1110
}

Src/Notion.Client/Models/PropertyValue/PhoneNumberPropertyValue.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ public class PhoneNumberPropertyValue : PropertyValue
1010
[JsonProperty("phone_number")]
1111
public string PhoneNumber { get; set; }
1212
}
13-
1413
}

0 commit comments

Comments
 (0)