using CaseAccountingDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaseAccountingContracts.ViewModels { public class SpecializationViewModel : ISpecializationModel { [DisplayName("Название")] public string Name { get; set; } = string.Empty; public int UserId { get; set; } public int Id { get; set; } } }