using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BeWo.Report.ReportObjects { public class VorlageRO : AbstractBeWoReportObject { public string RTFText { get; set; } public static VorlageRO Create(string RTFText) { var ro = new VorlageRO(); ro.RTFText = RTFText; return ro; } } }