aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jellyfin.Data/Entities/HomeSection.cs9
1 files changed, 9 insertions, 0 deletions
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
/// <summary>
/// Gets or sets the Id of the associated display preferences.
/// </summary>
+ /// <remarks>
+ /// Required.
+ /// </remarks>
public int DisplayPreferencesId { get; set; }
/// <summary>
/// Gets or sets the order.
/// </summary>
+ /// <remarks>
+ /// Required.
+ /// </remarks>
public int Order { get; set; }
/// <summary>
/// Gets or sets the type.
/// </summary>
+ /// <remarks>
+ /// Required.
+ /// </remarks>
public HomeSectionType Type { get; set; }
}
}