Objectliste angefangen
This commit is contained in:
28
DaSaSo.Domain/Model/SewerDamage.cs
Normal file
28
DaSaSo.Domain/Model/SewerDamage.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public enum EDamageType
|
||||
{
|
||||
Riss = 1,
|
||||
Bruch = 2,
|
||||
Scherbe = 4,
|
||||
Wurzel = 8,
|
||||
Inkrustation = 16,
|
||||
Ablagerung = 32,
|
||||
EinrageneStutzen = 64,
|
||||
Infiltration = 128
|
||||
}
|
||||
public enum EPreparationType
|
||||
{
|
||||
CleanedHD = 1,
|
||||
CleanedMechanisch = 2,
|
||||
CleanedRoborter = 4,
|
||||
FaekalienFrei = 8
|
||||
}
|
||||
public class SewerDamage : DomainObject
|
||||
{
|
||||
public SewerObject SewerObject { get; set; }
|
||||
public decimal Distance { get; set; }
|
||||
public EDamageType DamageType { get; set; }
|
||||
public EPreparationType PreparationType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user