2023-03-26 16:43:18 +04:00

8 lines
165 B
C#

namespace SushiBarDataModels.Models;
public interface IClientModel : IId
{
string ClientFio { get; }
string Email { get; }
string Password { get; }
}