using HospitalDataModels.Models; using System.ComponentModel; namespace HospitalContracts.ViewModels { public class ApothecaryViewModel : IApothecaryModel { public int Id { get; set; } [DisplayName("Логин")] public string Login { get; set; } = string.Empty; [DisplayName("Пароль")] public string Password { get; set; } = string.Empty; } }