11 lines
195 B
C#
Raw Normal View History

2023-03-25 18:48:21 +04:00
namespace FoodOrdersDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}