mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
11 lines
267 B
Protocol Buffer
11 lines
267 B
Protocol Buffer
syntax = "proto2";
|
|
import "response.proto";
|
|
|
|
message Response_DeckShareCreate {
|
|
extend Response {
|
|
optional Response_DeckShareCreate ext = 1103;
|
|
}
|
|
optional string token = 1;
|
|
optional uint64 expires_at = 2;
|
|
optional uint32 item_count = 3;
|
|
}
|