DB/TransportGuideContracts/ViewModels/StopViewModel.cs

19 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TransportGuideDataModels.Models;
using System.ComponentModel;
namespace TransportGuideContracts.ViewModels
{
public class StopViewModel : IStopModel
{
[DisplayName("Stop's name")]
public string Name { get; set; } = string.Empty;
public int Id { get; set; }
}
}