Files
Yae/res/proto/CacheItem.proto
2023-03-30 08:54:50 +08:00

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;
}