Добавлен класс модели клиента

This commit is contained in:
Никита Потапов 2024-04-06 14:18:40 +04:00
parent 464cebeb0f
commit b8aba7688e

View File

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