mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Create adult text classifier ML Model wip - starting to write PTN in c# More work on season, show and movie parsing Remove ML project
13 lines
487 B
C#
13 lines
487 B
C#
namespace Producer.Features.ParseTorrentTitle;
|
|
|
|
public sealed class AudioChannels : SmartEnum<AudioChannels, string>
|
|
{
|
|
public static readonly AudioChannels SEVEN = new("SEVEN", "7.1");
|
|
public static readonly AudioChannels SIX = new("SIX", "5.1");
|
|
public static readonly AudioChannels STEREO = new("STEREO", "stereo");
|
|
public static readonly AudioChannels MONO = new ("MONO", "mono");
|
|
|
|
private AudioChannels(string name, string value) : base(name, value)
|
|
{
|
|
}
|
|
} |