namespace FlowerShopDataModels.Models { public interface IFlowerModel : IId { string FlowerName { get; } double Price { get; } Dictionary FlowerComponents { get; } } }