Apply suggestions from code review

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
JPVenson
2024-10-09 21:03:57 +02:00
committed by GitHub
parent 5267851e64
commit 473628ba3a
7 changed files with 7 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ public interface IItemTypeLookup
public IReadOnlyList<BaseItemKind> ArtistsTypes { get; }
/// <summary>
/// Gets mapping for all BaseItemKinds and their expected serialisaition target.
/// Gets mapping for all BaseItemKinds and their expected serialization target.
/// </summary>
public IDictionary<BaseItemKind, string?> BaseItemKindNames { get; }
}

View File

@@ -14,7 +14,7 @@ public interface IPeopleRepository
/// Gets the people.
/// </summary>
/// <param name="filter">The query.</param>
/// <returns>List&lt;PersonInfo&gt;.</returns>
/// <returns>The list of people matching the filter.</returns>
IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery filter);
/// <summary>
@@ -28,6 +28,6 @@ public interface IPeopleRepository
/// Gets the people names.
/// </summary>
/// <param name="filter">The query.</param>
/// <returns>List&lt;System.String&gt;.</returns>
/// <returns>The list of people names matching the filter.</returns>
IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery filter);
}