Skylicht Engine
Loading...
Searching...
No Matches
SIAPProduct.h
1#pragma once
2
3#include <string>
4
5struct SIAPProduct
6{
7 std::string ProductId;
8 std::string LocalizedTitle;
9 std::string LocalizedDescription;
10 std::string LocalizedPrice;
11 double PriceValue;
12 std::string CurrencyCode;
13
14 SIAPProduct() :
15 PriceValue(0.0)
16 {
17 }
18};