Update MediaBrowser.Providers/Lyric/TxtLyricProvider.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
1hitsong
2022-09-18 12:38:10 -04:00
committed by GitHub
parent db662eeb33
commit 1aa8b22b89

View File

@@ -13,7 +13,7 @@ namespace MediaBrowser.Providers.Lyric;
public class TxtLyricProvider : ILyricProvider
{
/// <inheritdoc />
public string Name { get; } = "TxtLyricProvider";
public string Name => "TxtLyricProvider";
/// <inheritdoc />
public IEnumerable<string> SupportedMediaTypes { get; } = new[] { "lrc", "txt" };