PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryDataModels/IClientModel.cs
Иван Алексеев 575def6019 5-я
2024-05-02 17:46:55 +04:00

18 lines
309 B
C#

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