SUBD_TransportCompany/TransportCompany/TransportCompanyContracts/ViewModels/PointViewModel.cs

17 lines
415 B
C#
Raw Normal View History

2024-02-25 12:18:35 +04:00
using System.ComponentModel;
using TransportCompanyDataModels.Models;
namespace TransportCompanyContracts.ViewModels
{
public class PointViewModel : IPointModel
{
public int Id { get; set; }
[DisplayName("Пункт")]
public string PointName { get; set; } = string.Empty;
[DisplayName("Адрес")]
public string Address { get; set; } = string.Empty;
}
}