Browse Source

Updated documentation to indicate required elements.

Patrick Barron 5 năm trước cách đây
mục cha
commit
fcfe227537

+ 9 - 0
Jellyfin.Data/Entities/HomeSection.cs

@@ -23,16 +23,25 @@ namespace Jellyfin.Data.Entities
         /// <summary>
         /// <summary>
         /// Gets or sets the Id of the associated display preferences.
         /// Gets or sets the Id of the associated display preferences.
         /// </summary>
         /// </summary>
+        /// <remarks>
+        /// Required.
+        /// </remarks>
         public int DisplayPreferencesId { get; set; }
         public int DisplayPreferencesId { get; set; }
 
 
         /// <summary>
         /// <summary>
         /// Gets or sets the order.
         /// Gets or sets the order.
         /// </summary>
         /// </summary>
+        /// <remarks>
+        /// Required.
+        /// </remarks>
         public int Order { get; set; }
         public int Order { get; set; }
 
 
         /// <summary>
         /// <summary>
         /// Gets or sets the type.
         /// Gets or sets the type.
         /// </summary>
         /// </summary>
+        /// <remarks>
+        /// Required.
+        /// </remarks>
         public HomeSectionType Type { get; set; }
         public HomeSectionType Type { get; set; }
     }
     }
 }
 }