mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
9 lines
180 B
C#
9 lines
180 B
C#
|
namespace Nikse.SubtitleEdit.Core.Interfaces
|
|||
|
{
|
|||
|
public interface IRtfTextConverter
|
|||
|
{
|
|||
|
string RtfToText(string rtf);
|
|||
|
string TextToRtf(string text);
|
|||
|
}
|
|||
|
}
|