Files
eway/assets/gooditem.fbs
Aleksandr Trushkin a94cbe6710 update size position
2024-02-11 20:01:14 +03:00

33 lines
453 B
Plaintext

namespace internal.encoding.fbs;
struct Dimensions {
width:float;
height:float;
length:float;
}
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;
created_at:long;
sizes:Dimensions;
}
table GoodItems {
items:[GoodItem];
}
root_type GoodItems;