Änderung der Linergrundlagen angefangen

This commit is contained in:
Husky
2019-09-06 17:20:40 +02:00
parent 7f4db67209
commit 9a4335f81a
4 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
///
/// </summary>
public abstract class AbstractImprägnier
{
/// <summary>
///
/// </summary>
public string Schlauchnummer { get; set; }
/// <summary>
///
/// </summary>
public DateTime Imprägnierdatum { get; set; }
/// <summary>
///
/// </summary>
public uint DN { get; set; }
/// <summary>
///
/// </summary>
public double Wanddicke { get; set; }
/// <summary>
///
/// </summary>
public double Länge { get; set; }
}
}