mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-11 00:48:12 +08:00
11 lines
163 B
Protocol Buffer
11 lines
163 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "Proto";
|
|
|
|
message CacheItem {
|
|
uint32 version = 1;
|
|
string checksum = 2;
|
|
string etag = 3;
|
|
bytes content = 4;
|
|
}
|