Files

23 lines
462 B
C#
Raw Permalink Normal View History

2021-01-13 11:21:51 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Report.ReportObjects
{
public class VorlageRO : AbstractBeWoReportObject<VorlageRO>
{
public string RTFText { get; set; }
public static VorlageRO Create(string RTFText)
{
var ro = new VorlageRO();
ro.RTFText = RTFText;
return ro;
}
}
}