20 lines
424 B
C#
20 lines
424 B
C#
using Dakota.Models.Segmente;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dakota.Models.Nachricht
|
|
{
|
|
internal abstract class Nachricht : IRowable
|
|
{
|
|
public abstract List<Segment> GetSegments();
|
|
|
|
public string GetRows()
|
|
{
|
|
return string.Join(DakotaConfig.NewLine, GetSegments());
|
|
}
|
|
}
|
|
}
|