13 lines
325 B
C#
13 lines
325 B
C#
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;
|
|
}
|
|
}
|
|
|