Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/ViewModels/ClientViewModel.cs
2023-05-02 11:38:30 +04:00

19 lines
510 B
C#

using JewelryStoreDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
public int Id { get; set; }
public string ClientFIO { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}