aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ActivityLog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/ActivityLog.cs')
-rw-r--r--Jellyfin.Data/Entities/ActivityLog.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Jellyfin.Data/Entities/ActivityLog.cs b/Jellyfin.Data/Entities/ActivityLog.cs
index 8fbf6eaab..522c20664 100644
--- a/Jellyfin.Data/Entities/ActivityLog.cs
+++ b/Jellyfin.Data/Entities/ActivityLog.cs
@@ -53,6 +53,7 @@ namespace Jellyfin.Data.Entities
/// <param name="name">The name.</param>
/// <param name="type">The type.</param>
/// <param name="userId">The user's id.</param>
+ /// <returns>The new <see cref="ActivityLog"/> instance.</returns>
public static ActivityLog Create(string name, string type, Guid userId)
{
return new ActivityLog(name, type, userId);
@@ -63,7 +64,7 @@ namespace Jellyfin.Data.Entities
*************************************************************************/
/// <summary>
- /// Gets the identity of this instance.
+ /// Gets or sets the identity of this instance.
/// This is the key in the backing database.
/// </summary>
[Key]