using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel;

namespace ComputerHardwareStoreContracts.ViewModels
{
    public class VendorViewModel : IVendorModel
    {
        public int Id { get; set; }
        [DisplayName("Имя продавца")]
        public string Name { get; set; } = string.Empty;
        [DisplayName("Логин")]
        public string Login { get; set; } = string.Empty;
        [DisplayName("Пароль")]
        public string Password { get; set; } = string.Empty;
    }
}