14 lines
234 B
C#
14 lines
234 B
C#
|
namespace PortalAccountsDataModels.Models
|
|||
|
{
|
|||
|
public interface IAccountModel : IId
|
|||
|
{
|
|||
|
string Login { get; }
|
|||
|
|
|||
|
string? AvatarPath { get; }
|
|||
|
|
|||
|
int InterestId { get; }
|
|||
|
|
|||
|
string? Email { get; }
|
|||
|
}
|
|||
|
}
|