diff --git a/Jellyfin.Data/Entities/HomeSection.cs b/Jellyfin.Data/Entities/HomeSection.cs
index f19b6f3d4..1a59cda53 100644
--- a/Jellyfin.Data/Entities/HomeSection.cs
+++ b/Jellyfin.Data/Entities/HomeSection.cs
@@ -23,16 +23,25 @@ namespace Jellyfin.Data.Entities
///
/// Gets or sets the Id of the associated display preferences.
///
+ ///
+ /// Required.
+ ///
public int DisplayPreferencesId { get; set; }
///
/// Gets or sets the order.
///
+ ///
+ /// Required.
+ ///
public int Order { get; set; }
///
/// Gets or sets the type.
///
+ ///
+ /// Required.
+ ///
public HomeSectionType Type { get; set; }
}
}