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