PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyDataModels/Models/IClientModel.cs

12 lines
199 B
C#
Raw Permalink Normal View History

2024-04-18 16:34:54 +04:00
namespace TravelCompanyDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}