namespace GiftShopDataModels.Models { public interface IGiftModel : IId { string GiftName { get; } double Price { get; } Dictionary GiftComponents { get; } } }