浏览代码

Updated documentation to indicate required elements.

Patrick Barron 5 年之前
父节点
当前提交
fcfe227537
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      Jellyfin.Data/Entities/HomeSection.cs

+ 9 - 0
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; }
     }
 }