Pārlūkot izejas kodu

Updated documentation to indicate required elements.

Patrick Barron 5 gadi atpakaļ
vecāks
revīzija
fcfe227537
1 mainītis faili ar 9 papildinājumiem un 0 dzēšanām
  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; }
     }
 }