17 lines
393 B
C#
Raw Normal View History

2023-03-06 17:15:03 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemDataModels.Models
{
2023-03-07 12:47:29 +04:00
public interface ISecureModel : IId
2023-03-06 17:15:03 +04:00
{
2023-03-07 12:47:29 +04:00
string SecureName { get; }
2023-03-06 17:15:03 +04:00
double Price { get; }
2023-03-07 12:47:29 +04:00
Dictionary<int, (IComponentModel, int)> SecureComponents { get; }
2023-03-06 17:15:03 +04:00
}
}