17 lines
374 B
C#
Raw Normal View History

2023-03-20 15:30:38 +04:00
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; }
}
}