mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
11 lines
314 B
Protocol Buffer
11 lines
314 B
Protocol Buffer
syntax = "proto2";
|
|
import "session_commands.proto";
|
|
|
|
// Revokes one of the calling user's own share bundles. The referenced items
|
|
// are removed by cascade.
|
|
message Command_DeckShareRemove {
|
|
extend SessionCommand {
|
|
optional Command_DeckShareRemove ext = 1033;
|
|
}
|
|
optional uint32 share_id = 1;
|
|
}
|