PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AccountsContracts/ViewModels/AccountViewModel.cs

25 lines
801 B
C#
Raw Normal View History

2023-11-16 19:22:13 +04:00
using AccountsDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountsContracts.ViewModels
{
public class AccountViewModel : IAccountModel
{
[DisplayName("Почта")]
public string Login { get; set; } = string.Empty;
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
[DisplayName("Электронная почта")]
public string Email { get; set; } = string.Empty;
public int Id { get; set; }
2023-11-29 23:40:28 +04:00
public int InterestId { get; set; }
public string InterestName { get; set; } = string.Empty;
2023-11-30 00:23:56 +04:00
public string Avatar { get; set; } = string.Empty;
2023-11-16 19:22:13 +04:00
}
}