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 01:01:59 +03:00
2024-05-07 23:00:38 +04:00
string Email { get; }
2024-05-22 01:01:59 +03:00
2024-05-07 23:00:38 +04:00
string Password { get; }
}
}