You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Extras/Lyrics/LyricFileExtensions.cs

25 lines
692 B

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Extras.Lyrics
{
public static class LyricFileExtensions
{
private static HashSet<string> _fileExtensions;
static LyricFileExtensions()
{
_fileExtensions = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{
".lrc",
".txt",
".utf",
".utf8",
".utf-8"
};
}
public static HashSet<string> Extensions => _fileExtensions;
}
}