20 lines
492 B
C#
20 lines
492 B
C#
using TravelAgencyDataModels.Models;
|
|
|
|
namespace TravelAgencyContracts.BindingModels
|
|
{
|
|
public class UserBindingModel : IUserModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string UserFIO { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
}
|