Classes expanded

This commit is contained in:
HuskyTeufel
2021-09-12 18:57:18 +02:00
parent 28c290599b
commit 798870879a
7 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.Domain.Model
{
public class Buildingsite : DomainObject
{
public string BuildingSiteNumber { get; set; }
public string Country { get; set; }
public string ContactPerson { get; set; }
public IEnumerable<SewerObjects> SewerObjects { get; set; }
}
}