Add missing summary to AcceptedTimeFormats

This commit is contained in:
1hitsong 2022-09-19 17:02:42 -04:00
parent 5d2364f064
commit 838334b322

View File

@ -39,6 +39,10 @@ public class LrcLyricProvider : ILyricProvider
/// <inheritdoc /> /// <inheritdoc />
public IReadOnlyCollection<string> SupportedMediaTypes { get; } = new[] { "lrc", "elrc" }; public IReadOnlyCollection<string> SupportedMediaTypes { get; } = new[] { "lrc", "elrc" };
/// <summary>
/// Gets the Accepted Time Formats for the metadata numeric values.
/// </summary>
/// <value>The AcceptedTimeFormats.</value>
private static string[] AcceptedTimeFormats => new[] { "HH:mm:ss", "H:mm:ss", "mm:ss", "m:ss" }; private static string[] AcceptedTimeFormats => new[] { "HH:mm:ss", "H:mm:ss", "mm:ss", "m:ss" };
/// <summary> /// <summary>