Files
OnDoc/Helper/Converter.cs
2024-07-18 14:22:38 +02:00

20 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Helper
{
public class Converter
{
public string RtfToText(string rtfstring)
{
return "";
}
}
}