syntax = "proto3"; import "google/protobuf/empty.proto"; option csharp_namespace = "Aoba.RPC"; package aoba; import "Proto/Types.proto"; service AobaRpc { rpc GetMedia (Id) returns (MediaResponse); rpc DeleteMedia (Id) returns (google.protobuf.Empty); rpc UpdateMedia (google.protobuf.Empty) returns (google.protobuf.Empty); rpc ListMedia(PageFilter) returns (ListResponse); rpc GetUser(Id) returns (UserResponse); rpc GetShareXDestination(google.protobuf.Empty) returns (ShareXResponse); }