WayToRelation.cs
351 Bytes
using System;
using System.Collections.Generic;
namespace MapsDb.Models
{
public partial class WayToRelation
{
public int WayId { get; set; }
public int RelationId { get; set; }
public int Index { get; set; }
public virtual Relation Relation { get; set; }
public virtual Way Way { get; set; }
}
}