mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +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);
|
|
}
|
|
}
|