PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaDataModels/Models/IClientModel.cs

13 lines
195 B
C#
Raw Normal View History

2024-05-07 23:00:38 +04:00
namespace PizzeriaDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
2024-05-22 02:01:59 +04:00
2024-05-07 23:00:38 +04:00
string Email { get; }
2024-05-22 02:01:59 +04:00
2024-05-07 23:00:38 +04:00
string Password { get; }
}
}