SubtitleEdit/libse/Interfaces/IRtfTextConverter.cs

9 lines
180 B
C#
Raw Normal View History

2015-11-25 06:00:29 +01:00
namespace Nikse.SubtitleEdit.Core.Interfaces
{
public interface IRtfTextConverter
{
string RtfToText(string rtf);
string TextToRtf(string text);
}
}