This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Foundation
protocol Cart {
///Продукты в корзине пользователя
var products: [CartProduct] { get }
///Применённые промокоды
var promocodes: [String] { get }
///Количество доступных бонусов для использования
var availableBonuses: Int? { get }
}