13 lines
335 B
C#
13 lines
335 B
C#
using ConstructionCompanyDataModels.Models;
|
|
|
|
namespace ConstructionCompanyContracts.BindingModels
|
|
{
|
|
public class CustomerBindingModel : ICustomerModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string DriverFio { get; set; } = string.Empty;
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|