15 lines
269 B
C#
15 lines
269 B
C#
|
namespace UniversityDataModels.HelperInterfaces
|
|||
|
{
|
|||
|
public interface IUser : IId
|
|||
|
{
|
|||
|
string FirstName { get; }
|
|||
|
string LastName { get; }
|
|||
|
|
|||
|
string Login { get; }
|
|||
|
|
|||
|
string Password { get; }
|
|||
|
|
|||
|
string PhoneNumber { get; }
|
|||
|
}
|
|||
|
}
|