13 lines
417 B
C#
13 lines
417 B
C#
namespace DaSaSo.Domain.Model
|
|
{
|
|
public class SewerObjects : DomainObject
|
|
{
|
|
public Buildingsite BuildingSite { get; set; }
|
|
public string StreetName { get; set; }
|
|
public string ObjektName { get; set; }
|
|
public string PointFrom { get; set; }
|
|
public string PointTo { get; set; }
|
|
public int DN { get; set; }
|
|
public decimal SewerLength { get; set; }
|
|
}
|
|
} |