Dakota -> Data Verweis entfernt

This commit is contained in:
2025-11-07 14:54:55 +01:00
parent 300fd43c91
commit 789950987b
19 changed files with 19 additions and 28 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.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; }
}
}