PIbd-23_Yakobchuk_S.V._SUBD/ConstructionCompany/ConstructionCompanyContracts/BindingModels/PointBindingModel.cs

13 lines
325 B
C#
Raw Normal View History

2024-04-22 15:11:47 +04:00
using ConstructionCompanyDataModels.Models;
namespace ConstructionCompanyContracts.BindingModels
{
public class PointBindingModel : IPointModel
{
public int Id { get; set; }
public string PointName { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
}
}