using ElectronicsShopDataModels; using ElectronicsShopDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.ViewModels { public class ClientViewModel : IClientModel { //ID пользователя public int UserID { get; set; } [DisplayName("Почта")] public string Email { get; set; } = string.Empty; } }