namespace SecuritySystemDataModels.Models
{
    public interface ISecureModel : IId
    {
        string SecureName { get; }
        double Price { get; }
        Dictionary<int, (IComponentModel, int)> SecureComponents { get; }
    }
}