diff options
| author | JPVenson <github@jpb.email> | 2024-10-10 00:02:16 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-10-10 00:02:16 +0000 |
| commit | 7a5c7e70f66d3f68619c27474d7db26f83df9565 (patch) | |
| tree | 1aec1dc100e02427389965ba5c94c54d0fb81c38 /Jellyfin.Data | |
| parent | 868bb9ea259faa537f44c5c25be823905d4297be (diff) | |
Update comments
Diffstat (limited to 'Jellyfin.Data')
| -rw-r--r-- | Jellyfin.Data/Entities/UserData.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Jellyfin.Data/Entities/UserData.cs b/Jellyfin.Data/Entities/UserData.cs index b9aea664a..1204446d0 100644 --- a/Jellyfin.Data/Entities/UserData.cs +++ b/Jellyfin.Data/Entities/UserData.cs @@ -3,7 +3,9 @@ using System.ComponentModel.DataAnnotations.Schema; namespace Jellyfin.Data.Entities; -#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +/// <summary> +/// Provides <see cref="BaseItemEntity"/> and <see cref="User"/> related data. +/// </summary> public class UserData { /// <summary> @@ -67,7 +69,13 @@ public class UserData /// <value><c>null</c> if [likes] contains no value, <c>true</c> if [likes]; otherwise, <c>false</c>.</value> public bool? Likes { get; set; } + /// <summary> + /// Gets or Sets the UserId. + /// </summary> public Guid UserId { get; set; } + /// <summary> + /// Gets or Sets the User. + /// </summary> public User? User { get; set; } } |
