ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryDataModels/Models/IClientModel.cs

11 lines
224 B
C#
Raw Normal View History

2024-04-26 00:17:50 +04:00
using FishFactoryDataModels;
namespace FishFactoryDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}