PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantDataModels/Models/IClientModel.cs

16 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}