diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-05-15 12:51:18 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-05-15 12:51:18 -0400 |
| commit | a5dee3680880d525a6c507deb7dd284b08b7ebdd (patch) | |
| tree | 1e456a4a0c7657c9f7e7c490eead4c0d21b249e3 /Jellyfin.Data | |
| parent | 953777f1ba4858f5186086e97910fcb88bfe3d61 (diff) | |
Apply more review suggestions
Diffstat (limited to 'Jellyfin.Data')
| -rw-r--r-- | Jellyfin.Data/Entities/ActivityLog.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jellyfin.Data/Entities/ActivityLog.cs b/Jellyfin.Data/Entities/ActivityLog.cs index 8fbf6eaabf..522c206640 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] |
