SUBD_TransportCompany/TransportCompany/TransportCompanyContracts/BindingModels/PointBindingModel.cs

12 lines
319 B
C#
Raw Permalink Normal View History

2024-02-25 12:18:35 +04:00
using TransportCompanyDataModels.Models;
namespace TransportCompanyContracts.BindingModels
{
public class PointBindingModel : IPointModel
{
public int Id { get; set; }
public string PointName { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
}
}