добавлен интерфейс ClientModel

This commit is contained in:
ekallin 2024-04-05 16:28:42 +03:00
parent 458eba712a
commit f6e40aafc6

View File

@ -0,0 +1,9 @@
namespace SushiBarDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}