Schachtedit view hinzugefügt

This commit is contained in:
2023-03-26 14:29:14 +02:00
parent 9007099d56
commit 525972b7f3
14 changed files with 125 additions and 35 deletions

View File

@@ -6,10 +6,14 @@ using System.Threading.Tasks;
namespace Shared.Domain
{
internal class Kanal
public class Kanal
{
public int Id { get; set; }
public string Objektbezeichnung { get; set; }
Schacht? startSchacht = null;
Schacht? endSchacht = null;
string objektbezeichnung = "";
public int DN { get; set; }
public string Material { get; set; }
}
}