aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-07-16 19:05:35 -0400
committerPatrick Barron <barronpm@gmail.com>2020-07-17 16:11:54 -0400
commitfcfe22753749e86c4c5a0755fc6fa13ba053faf4 (patch)
tree034d59683dc49b0f9843bf8e87d470d456f7fa09
parent817e06813efd7f4911dc54dbb497d653418ae67b (diff)
Updated documentation to indicate required elements.
-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; }
}
}