20 lines
525 B
C#
20 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DaSaSo.Domain.Model
|
|
{
|
|
public class Impregnation : DomainObject
|
|
{
|
|
public int DN { get; set; }
|
|
public string Number { get; set; }
|
|
public decimal Linerlength { get; set; }
|
|
public bool IsAvaible { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public string LinerNumber { get; set; }
|
|
public decimal WallThickness { get; set; }
|
|
}
|
|
}
|