19 lines
443 B
C#
Raw Normal View History

using RouteGuideDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RouteGuideContracts.BindingModels
{
public class RouteBindingModel : IRouteModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public Dictionary<int, (IStopModel, int)> RouteStops { get; set; } = new();
}
}