PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkDataModels/Models/IClientModel.cs

16 lines
315 B
C#
Raw Permalink Normal View History

2024-05-25 21:23:11 +04:00
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; }
}
}