Es gibt jetzt hutprofil und kurzliner
This commit is contained in:
37
KlassenBIB/Sanierungskonzept.cs
Normal file
37
KlassenBIB/Sanierungskonzept.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Markup;
|
||||
|
||||
namespace KlassenBIB
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Sanierungskonzept
|
||||
{
|
||||
string anweisung;
|
||||
|
||||
/// <summary>
|
||||
/// Anweisung zur Darstellung vom Art des Reparatur
|
||||
/// </summary>
|
||||
public string Anweisung
|
||||
{
|
||||
get
|
||||
{
|
||||
return anweisung;
|
||||
}
|
||||
set
|
||||
{
|
||||
anweisung = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Die Reparatur
|
||||
/// </summary>
|
||||
public Reparatur Reparatur { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user