20 lines
442 B
C#
20 lines
442 B
C#
using BankDataModels.HelperInterfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankDataModels
|
|
{
|
|
public interface IClientModel : IId
|
|
{
|
|
string Email { get; }
|
|
string FirstName { get; }
|
|
string LastName { get; }
|
|
string? MiddleName { get; }
|
|
string PhoneNumber { get; }
|
|
string Password { get; }
|
|
}
|
|
}
|