2023-04-09 01:27:52 +04:00

20 lines
486 B
C#

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; }
}
}