21 lines
450 B
C#
21 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
public class PlatzhalterDC
|
|
{
|
|
public string Bezeichnung { get; set; }
|
|
public string Platzhalter { get; set; }
|
|
public List<PlatzhalterDC> Children { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Bezeichnung;
|
|
}
|
|
}
|
|
}
|