24 lines
418 B
C#
24 lines
418 B
C#
using DevExpress.Pdf;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.Import
|
|
{
|
|
public class TextAbschnitt
|
|
{
|
|
public String Text { get; set; }
|
|
|
|
public int ZeilenIndex { get; set; }
|
|
|
|
public bool Success { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|