using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchnittstelleImporter.XML2006 { /// /// /// public class Anschlussdaten { string objektbezeichnung; EKantenTyp kantentyp; decimal entfernung; string anschlussArt; string fixierung; string kommentar; /// /// /// public string Objektbezeichnung { get => objektbezeichnung; set => objektbezeichnung = value; } /// /// /// public EKantenTyp Kantentyp { get => kantentyp; set => kantentyp = value; } /// /// /// public decimal Entfernung { get => entfernung; set => entfernung = value; } /// /// /// public string AnschlussArt { get => anschlussArt; set => anschlussArt = value; } /// /// /// public string Fixierung { get => fixierung; set => fixierung = value; } /// /// /// public string Kommentar { get => kommentar; set => kommentar = value; } } }