* fix song subtitles * always use generated subtitles * file not found/unavailable fixes
10 lines
120 B
C#
10 lines
120 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum SubtitleKind
|
|
{
|
|
Embedded = 0,
|
|
Sidecar = 1,
|
|
|
|
Generated = 99
|
|
}
|