PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationDataModels/IClientModel.cs
2024-04-22 10:24:39 +04:00

16 lines
314 B
C#

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