PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantDataModels/Models/IClientModel.cs

10 lines
199 B
C#
Raw Normal View History

2024-04-05 23:37:18 +04:00
namespace AutomobilePlantDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}