20 lines
429 B
C#
20 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.Domain
|
|
{
|
|
public class Kanal
|
|
{
|
|
public int Id { get; set; }
|
|
public string Objektbezeichnung { get; set; }
|
|
Schacht? startSchacht = null;
|
|
Schacht? endSchacht = null;
|
|
public int DN { get; set; }
|
|
public string Material { get; set; }
|
|
|
|
}
|
|
}
|