11 lines
195 B
C#
11 lines
195 B
C#
namespace FoodOrdersDataModels.Models
|
|
{
|
|
public interface IClientModel : IId
|
|
{
|
|
string ClientFIO { get; }
|
|
|
|
string Email { get; }
|
|
|
|
string Password { get; }
|
|
}
|
|
} |