43 lines
825 B
C#
43 lines
825 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchnittstelleImporter.XML2006
|
|
{
|
|
public class Lage
|
|
{
|
|
string strassename;
|
|
string ortname;
|
|
|
|
public string Strassename
|
|
{
|
|
get
|
|
{
|
|
return strassename;
|
|
}
|
|
set
|
|
{
|
|
strassename = value;
|
|
}
|
|
}
|
|
public string Ortname
|
|
{
|
|
get
|
|
{
|
|
return ortname;
|
|
}
|
|
set
|
|
{
|
|
ortname = value;
|
|
}
|
|
}
|
|
public Lage(string strassename, string ortname)
|
|
{
|
|
this.strassename = strassename;
|
|
this.ortname = ortname;
|
|
}
|
|
}
|
|
}
|