using System.Collections.Generic; namespace Nikse.SubtitleEdit.Core.SubtitleFormats { public class SamiModern : Sami { public override string Name { get { return "SAMI modern"; } } public override bool IsMine(List lines, string fileName) { var subtitle = new Subtitle(); LoadSubtitle(subtitle, lines, fileName); return subtitle.Paragraphs.Count > _errorCount; } } }