22 lines
542 B
C#
22 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Data.Models
|
|
{
|
|
public class AddressInformation
|
|
{
|
|
public string IKLeistungserbringer { get; set; }
|
|
public string OrganisationName { get; set; }
|
|
public string Street { get; set; }
|
|
public string PostCode { get; set; }
|
|
public string Town { get; set; }
|
|
public string Phone { get; set; }
|
|
public string Fax { get; set; }
|
|
public string Mail { get; set; }
|
|
public string Website { get; set; }
|
|
}
|
|
}
|