DB/TransportGuideContracts/ViewModels/StopViewModel.cs

19 lines
397 B
C#
Raw Normal View History

2023-05-03 19:18:39 +04:00
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; }
}
}