18 lines
393 B
C#
18 lines
393 B
C#
|
using PortalAccountsDataModels.Models;
|
|||
|
|
|||
|
namespace PortalAccountsContracts.BindingModels
|
|||
|
{
|
|||
|
public class AccountBindingModel : IAccountModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? AvatarPath { get; set; }
|
|||
|
|
|||
|
public int InterestId { get; set; }
|
|||
|
|
|||
|
public string? Email { get; set; }
|
|||
|
}
|
|||
|
}
|