mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
10 lines
216 B
C#
10 lines
216 B
C#
using System.IO;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.Interfaces
|
|
{
|
|
public interface IBinaryPersistableSubtitle
|
|
{
|
|
bool Save(string fileName, Stream stream, Subtitle subtitle, bool batchMode);
|
|
}
|
|
}
|