LabSubd/Subd/Contracts/ViewModels/RouteVM.cs

24 lines
557 B
C#
Raw Permalink Normal View History

using DataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class RouteVM : IRoute
{
public int? PlaceStart { get; set; }
public int? PlaceEnd { get; set; }
public int Length { get; set; }
[DisplayName("Название")]
public string Title { get; set; } = string.Empty;
[DisplayName("Номер")]
public int Id { get; set; }
}
}