PIbd-21_Yakovlev_M.G._CarRe.../CarRepairShop/CarRepairShopDataModels/Models/IClientModel.cs

16 lines
314 B
C#
Raw Normal View History

2024-04-06 20:36:13 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarRepairShopDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}