Objectliste angefangen
This commit is contained in:
27
DaSaSo.Domain/Model/SewerObject.cs
Normal file
27
DaSaSo.Domain/Model/SewerObject.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public class SewerObject : DomainObject
|
||||
{
|
||||
public Buildingsite BuildingSite { get; set; }
|
||||
public string StreetName { get; set; }
|
||||
public string ObjektName { get; set; }
|
||||
public string PointFrom { get; set; }
|
||||
public string PointTo { get; set; }
|
||||
public string Material { get; set; }
|
||||
public int DN { get; set; }
|
||||
public decimal SewerLength { get; set; }
|
||||
public bool SewerActivated { get; set; }
|
||||
public bool SewerCleaned { get; set; }
|
||||
public bool WaterBarrier { get; set; }
|
||||
public bool PermitNeeded { get; set; }
|
||||
public bool BuildingsiteBarier { get; set; }
|
||||
public IEnumerable<SewerDamage> SewerDamages { get; set; }
|
||||
|
||||
//Not for Databinding
|
||||
[NotMapped]
|
||||
public bool IsSelected { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user