PIbd-21_Afanasev_S.S_MotorP.../MotorPlant/MotorPlantDataModels/IClientModel.cs

16 lines
311 B
C#
Raw Permalink Normal View History

2024-04-19 12:13:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}