Files
eway/assets/gooditem.fbs

25 lines
344 B
Plaintext

namespace internal.encoding.fbs;
table GoodItem {
sku:string;
photo:string;
name:string;
description:string;
category:string;
type:string;
producer:string;
pack:short;
step:short;
price:float;
tariff:float;
cart:long;
stock:short;
parameters:string;
}
table GoodItems {
items:[GoodItem];
}
root_type GoodItems;