21 lines
605 B
C#
21 lines
605 B
C#
using BeWo.Data.Entities;
|
|
using BS.Shared.DataContracts;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AWOMuensterlandRecklinghausen.Reporting
|
|
{
|
|
public class KlientUmfeldPerson2
|
|
{
|
|
public PersonDC Person { get; set; }
|
|
public string Rolle { get; set; }
|
|
public string Strasse { get; set; }
|
|
public string Postleitzahl { get; set; }
|
|
public string Ort { get; set; }
|
|
public string Telefonnummer { get; set; }
|
|
public string Handynummer { get; set; }
|
|
public string Fax { get; set; }
|
|
public string Mailadresse { get; set; }
|
|
|
|
}
|
|
|
|
} |