Files
Kanalsanierungsverwaltung/KlassenBIB/Inspektionsobjekt.cs
2018-05-16 18:48:15 +02:00

22 lines
525 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Markup;
namespace KlassenBIB
{
[ContentProperty("Schadenskuerzeln")]
public class Inspektionsobjekt
{
public string Objektbezeichnung { get; set; }
public InspektionskuerzelnCollection Schadenskuerzeln { get; private set; }
public Inspektionsobjekt()
{
Schadenskuerzeln = new InspektionskuerzelnCollection();
}
}
}