An authentication server
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

13 řádky
262 B

require "json"
require "uuid"
require "uuid/json"
require "./product"
class Category
JSON.mapping(
name: {type: String, nilable: true},
name_id: String,
parent: {type: String, nilable: true},
products: Array(UUID)
)
end