diff --git a/Confectionery/ConfectioneryDataModels/IClientModel.cs b/Confectionery/ConfectioneryDataModels/IClientModel.cs new file mode 100644 index 0000000..ddad9f3 --- /dev/null +++ b/Confectionery/ConfectioneryDataModels/IClientModel.cs @@ -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; } + } +}