PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopDataModels/IClientModel.cs
gg12 darfren 96d69b91a6 .
2024-04-01 20:04:44 +04:00

16 lines
306 B
C#

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; }
}
}