PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryDataModels/Models/IClientModel.cs
2024-04-11 13:43:22 +04:00

18 lines
317 B
C#

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