26 lines
602 B
C#
26 lines
602 B
C#
|
|
|
|
using ServiceStationDataModels;
|
|
|
|
namespace ServiceStationContracts.BindingModels
|
|
{
|
|
public class ClientBindingModel : IClientModel
|
|
{
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public int? Point { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|