using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using ZooDataModels.Models; namespace ZooContracts.ViewModels { public class RouteCostViewModel : IRouteCostModel { [DisplayName("Id маршрута")] public int RouteId { get; set; } [DisplayName("Id затраты")] public int CostId { get; set; } public int Id { get; set; } } }