23 lines
648 B
C#
23 lines
648 B
C#
using DataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.BindingModels
|
|
{
|
|
public class RouteBM : IRoute
|
|
{
|
|
public int? PlaceStart { get; set; }
|
|
public string PlaceStartName { get; set; } = string.Empty;
|
|
public int? PlaceEnd { get; set; }
|
|
public string PlaceEndName { get; set; } = string.Empty;
|
|
public int Length { get; set; }
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
public string oldTitle { get; set; } = string.Empty;
|
|
public int Id { get; set; }
|
|
}
|
|
}
|