Update comments

pull/12798/head
JPVenson 5 months ago
parent 868bb9ea25
commit 7a5c7e70f6

@ -3,7 +3,9 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities; 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 public class UserData
{ {
/// <summary> /// <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> /// <value><c>null</c> if [likes] contains no value, <c>true</c> if [likes]; otherwise, <c>false</c>.</value>
public bool? Likes { get; set; } public bool? Likes { get; set; }
/// <summary>
/// Gets or Sets the UserId.
/// </summary>
public Guid UserId { get; set; } public Guid UserId { get; set; }
/// <summary>
/// Gets or Sets the User.
/// </summary>
public User? User { get; set; } public User? User { get; set; }
} }

Loading…
Cancel
Save