mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 00:55:09 -07:00
* [Server] Add deck share links and public deck visibility * Address server review comments for deck share links * Document transaction teardown in deck share rollback paths * Address second round of deck share review comments --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
10 lines
307 B
Protocol Buffer
10 lines
307 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
// A share bundle created by a user, as reported by a "list my shares" query.
|
|
message ServerInfo_DeckShareSummary {
|
|
optional uint32 id = 1;
|
|
optional string name = 2;
|
|
optional uint64 creation_time = 3;
|
|
optional uint64 expires_at = 4;
|
|
optional uint32 item_count = 5;
|
|
}
|