SurfaceTreatment.cs
411 Bytes
using System;
using System.Collections.Generic;
namespace Maps.Entities
{
public partial class SurfaceTreatment
{
public SurfaceTreatment()
{
RoadSurface = new HashSet<RoadSurface>();
}
public int SurfaceTreatmentId { get; set; }
public string Name { get; set; }
public virtual ICollection<RoadSurface> RoadSurface { get; set; }
}
}