mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 23:01:47 +01:00
16 lines
331 B
Cap'n Proto
16 lines
331 B
Cap'n Proto
|
@0xbacaff4190ac7d80;
|
||
|
|
||
|
using Rust = import "programming_language/rust.capnp";
|
||
|
$Rust.parentModule("schema");
|
||
|
|
||
|
using CSharp = import "programming_language/csharp.capnp";
|
||
|
$CSharp.namespace("FabAccessAPI.Schema");
|
||
|
|
||
|
using General = import "general.capnp";
|
||
|
|
||
|
struct Space
|
||
|
{
|
||
|
id @0 :General.UUID;
|
||
|
name @1 :Text;
|
||
|
info @2 :Text;
|
||
|
}
|