Create GetMemberByDisplayName()

This commit is contained in:
Fiona
2020-06-22 21:06:14 +10:00
parent 6fa76e85c4
commit 2de6d399ce
2 changed files with 12 additions and 0 deletions

View File

@@ -149,6 +149,12 @@ namespace PluralKit.Core {
/// </para>
/// <returns>The <see cref="PKMember"/> with the given name, or null if no member was found.</returns>
Task<PKMember> GetMemberByName(PKSystem system, string name);
/// <summary>
/// Gets a member by its display name within one system.
/// </summary>
/// <returns>The <see cref="PKMember"/> with the given name, or null if no member was found.</returns>
Task<PKMember> GetMemberByDisplayName(PKSystem system, string name);
/// <summary>
/// Gets all members inside a given system.