Implementation of a generic backend of eshop in Crystal
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

13 рядки
321 B

require "json"
class Product
JSON.mapping(
price: {type: Float64, nilable: true},
tax_rate: {type: Float64, nilable: true},
name: {type: String, nilable: true},
description: {type: String, nilable: true},
pic_url: {type: String, nilable: true},
id: Int64,
)
end