namespace SecuritySystemDataModels.Models { public interface ISecureModel : IId { string SecureName { get; } double Price { get; } Dictionary SecureComponents { get; } } }