Files
eway/assets/gooditem.fbs
2024-01-24 16:12:16 +03:00

24 lines
323 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;
}
table GoodItems {
items:[GoodItem];
}
root_type GoodItems;