21 lines
643 B
C#
21 lines
643 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Shared.Domain
|
|
{
|
|
public class Auftraggeber : DBObject
|
|
{
|
|
public string Name { get; set; } = String.Empty;
|
|
public string Strasse { get; set; } = String.Empty;
|
|
public string Ort { get; set; } = String.Empty;
|
|
public string Postleitzahl { get; set; } = String.Empty;
|
|
public string Ansprechpartner { get; set; } = String.Empty;
|
|
public string Telefonnummer { get; set; } = String.Empty;
|
|
|
|
public bool DataChanged { get; set; } = false;
|
|
}
|
|
}
|