using SecuritySystemDataModels.Models; using System.ComponentModel; namespace SecuritySystemContracts.ViewModels { public class ShopViewModel : IShopModel { public int Id { get; set; } [DisplayName("Название")] public string Name { get; set; } = string.Empty; [DisplayName("Адрес")] public string Address { get; set; } = string.Empty; [DisplayName("Дата открытия")] public DateTime OpeningDate { get; set; } public Dictionary ShopSecures { get; set; } = new(); } }