PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkDataModels/Models/IClientModel.cs
2024-05-25 21:23:11 +04:00

16 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}