Files
eway/assets/gooditem.fbs
2024-02-11 15:50:43 +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;
sizes:Dimensions;
parameters:string;
created_at:long;
}
table GoodItems {
items:[GoodItem];
}
root_type GoodItems;