10Г Егор Романов 130c8ed941 Lab_Work_1_Hard complete
2023-03-20 15:30:38 +04:00

17 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemDataModels.Models
{
public class IShopModel
{
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (ISecureModel, int)> ListSecure { get; }
}
}