Начало Lab5. Если честно, у меня уже депрессия, я кое-как всё сдаю и мне ничего не хочется. Хочу уже просто закрыть семестр без троек и долгов и уйти в лето

This commit is contained in:
malimova 2024-04-29 23:06:26 +04:00
parent aa4538f811
commit b13d5019a1

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryDataModels.Models
{
public interface IClientModel
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}