RelationToRoad.cs
316 Bytes
using System;
using System.Collections.Generic;
namespace MapsDb.Models
{
public partial class RelationToRoad
{
public int RoadId { get; set; }
public int RelationId { get; set; }
public virtual Relation Relation { get; set; }
public virtual Road Road { get; set; }
}
}