17 lines
374 B
C#
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; }
|
|
}
|
|
}
|