mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 23:01:47 +01:00
21 lines
431 B
Cap'n Proto
21 lines
431 B
Cap'n Proto
|
@0x849f99d8777df6e8;
|
||
|
|
||
|
using Rust = import "programming_language/rust.capnp";
|
||
|
$Rust.parentModule("schema");
|
||
|
|
||
|
using CSharp = import "programming_language/csharp.capnp";
|
||
|
$CSharp.namespace("FabAccessAPI.Schema");
|
||
|
|
||
|
struct Card {
|
||
|
enum CardType {
|
||
|
NXPMifareDESFire_ev2 @0;
|
||
|
}
|
||
|
|
||
|
id @0 :General.UUID;
|
||
|
type @1 :CardType;
|
||
|
|
||
|
manage @2 :Manage;
|
||
|
interface Manage $CSharp.name("ManageInterface") {
|
||
|
|
||
|
}
|
||
|
}
|