12 lines
164 B
Text
12 lines
164 B
Text
include "property.fbs";
|
|
|
|
namespace Ikarus;
|
|
|
|
table Blueprint {
|
|
id: int64;
|
|
name: string;
|
|
description: string;
|
|
tags: [string];
|
|
}
|
|
|
|
root_type Blueprint;
|