hyperion.ng/libsrc/flatbufserver/hyperion_reply.fbs

10 lines
115 B
Plaintext
Raw Normal View History

2018-12-30 22:07:53 +01:00
namespace hyperionnet;
2018-12-28 17:55:49 +01:00
2018-12-30 22:07:53 +01:00
table Reply {
2018-12-28 17:55:49 +01:00
error:string;
2018-12-30 22:07:53 +01:00
video:int = -1;
registered:int = -1;
2018-12-28 17:55:49 +01:00
}
2018-12-30 22:07:53 +01:00
root_type Reply;