PIbd-23_Yakobchuk_S.V._SUBD/ConstructionCompany/ConstructionCompanyContracts/ViewModels/PointViewModel.cs

18 lines
456 B
C#

using System.ComponentModel;
using ConstructionCompanyDataModels.Models;
namespace ConstructionCompanyContracts.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;
}
}