PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/BindingModels/ClientBindingModel.cs
2024-04-06 18:45:56 +04:00

18 lines
483 B
C#

using FlowerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.BindingModels
{
public class ClientBindingModel : 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;
}
}