Files
EDOKA_2024/Helper/Converter.cs
Stefan Hutter 50e9e06829 Initial Comit
2024-05-31 13:32:10 +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 "";
}
}
}