diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-07-16 19:05:35 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-07-17 16:11:54 -0400 |
| commit | fcfe22753749e86c4c5a0755fc6fa13ba053faf4 (patch) | |
| tree | 034d59683dc49b0f9843bf8e87d470d456f7fa09 | |
| parent | 817e06813efd7f4911dc54dbb497d653418ae67b (diff) | |
Updated documentation to indicate required elements.
| -rw-r--r-- | Jellyfin.Data/Entities/HomeSection.cs | 9 |
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; } } } |
