//-----------------------------------------------------------------------------
// This source file is part of eily.acuario.3d
//
// For the latest info, see http://integra-s.com/
//
// Module:
// File: Tree.proto
// Created: 10.07.2014
// Updated:
// Author: Golodov Aleksey mailto:golodov@integra-s.com
//
// Copyright (c) 2012 Integra-S JSC
//-----------------------------------------------------------------------------
syntax = "proto2";

package eily_acuario_3d.protobuf;

option optimize_for = SPEED;

message TreeNode{
        repeated    TreeNode    Leaf    = 1;
        optional    string      Name    = 2;
        repeated    bytes       Value   = 3;
}
