Add missing xmldoc

This commit is contained in:
Dean Herbert 2021-10-01 17:33:57 +09:00
parent d6618a99a3
commit 0daf8937e3
2 changed files with 15 additions and 0 deletions

View File

@ -64,8 +64,14 @@ public interface IBeatmapInfo : IHasOnlineID
/// </summary>
double StarRating { get; }
/// <summary>
/// A user-presentable display title representing this metadata.
/// </summary>
string DisplayTitle => $"{Metadata} {versionString}".Trim();
/// <summary>
/// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields.
/// </summary>
RomanisableString DisplayTitleRomanisable
{
get

View File

@ -65,6 +65,9 @@ public interface IBeatmapMetadataInfo : IEquatable<IBeatmapMetadataInfo>
/// </summary>
string BackgroundFile { get; }
/// <summary>
/// A user-presentable display title representing this metadata.
/// </summary>
string DisplayTitle
{
get
@ -74,6 +77,9 @@ string DisplayTitle
}
}
/// <summary>
/// A user-presentable display title representing this metadata, with localisation handling for potentially romanisable fields.
/// </summary>
RomanisableString DisplayTitleRomanisable
{
get
@ -86,6 +92,9 @@ RomanisableString DisplayTitleRomanisable
}
}
/// <summary>
/// An array of all searchable terms provided in contained metadata.
/// </summary>
string[] SearchableTerms => new[]
{
Author,