23 lines
462 B
C#
23 lines
462 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|