17 lines
415 B
C#
17 lines
415 B
C#
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;
|
|
}
|
|
}
|