PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopDataModels/IClientModel.cs

16 lines
306 B
C#
Raw Normal View History

2024-04-01 20:04:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}