LabWork05. Start work.

This commit is contained in:
Programmist73 2023-03-25 13:47:57 +04:00
parent 990129b09f
commit 848946f26b

View File

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