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; } }