2023-11-16 19:22:13 +04:00
|
|
|
|
using AccountsDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountsContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class AccountBindingModel : IAccountModel
|
|
|
|
|
{
|
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2023-11-16 20:39:00 +04:00
|
|
|
|
|
|
|
|
|
public Dictionary<int, IInterestModel> AccountInterests
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
2023-11-16 19:22:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|