using CarRepairShopDataModels.Models; using System.ComponentModel; namespace CarRepairShopContracts.ViewModels { public class RepairViewModel : IRepairModel { public int Id { get; set; } [DisplayName("Название ремонта")] public string RepairName { get; set; } = string.Empty; [DisplayName("Цена")] public double Price { get; set; } public Dictionary RepairComponents { get; set; } = new(); } }