ISEbd-22 Alimova M.S. Lab Work 05 base #6

Closed
malimova wants to merge 26 commits from Lab5_base into Lab4_base
Showing only changes of commit cdcd7bcd28 - Show all commits

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; }
}
}