8 lines
165 B
C#
Raw Normal View History

2023-03-26 16:43:18 +04:00
namespace SushiBarDataModels.Models;
public interface IClientModel : IId
{
string ClientFio { get; }
string Email { get; }
string Password { get; }
}