This commit is contained in:
the
2023-04-07 17:53:57 +04:00
parent aef57c1f55
commit 9f9aa560c3
21 changed files with 460 additions and 6 deletions

View File

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