PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IClientModel.cs
2024-04-06 18:45:56 +04:00

16 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}