13 lines
336 B
C#
Raw Normal View History

using ServiceStationDataModels.Models;
2024-04-30 01:41:35 +03:00
namespace ServiceStationContracts.BindingModels
{
2024-08-10 18:43:15 +04:00
public class ClientBindingModel : IClientModel {
2024-04-30 01:41:35 +03:00
2024-08-10 18:43:15 +04:00
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string Login { get; set; } = string.Empty;
}
2024-04-30 01:41:35 +03:00
}