1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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; } } }