27 lines
921 B
C#
27 lines
921 B
C#
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; }
|
|
|
|
}
|
|
} |