PIbd-23_Starostin_I.K._Ship.../ShipyardDataModels/IClientModel.cs

16 lines
317 B
C#
Raw Normal View History

2024-06-02 17:43:18 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}