PIbd-21 Potapov N.S. LabWork01 Hard #5

Closed
ns.potapov wants to merge 20 commits from LabWorkHard01 into LabWork01
Showing only changes of commit 991ec196cc - Show all commits

View File

@ -0,0 +1,17 @@
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<int, (ISecureModel, int)> ShopSecures { get; set; } = new();
}
}