Files
eway/assets/gooditem.fbs
2024-02-04 22:13:39 +03:00

26 lines
363 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;
created_at:long;
}
table GoodItems {
items:[GoodItem];
}
root_type GoodItems;