types/proto/claim.proto
Alex Grintsvayg 69807aaae5
more changes
2019-02-14 09:55:47 -05:00

17 lines
250 B
Protocol Buffer

syntax = "proto3";
package pb;
import "stream.proto";
import "channel.proto";
message Claim {
enum Type {
STREAM = 0;
CHANNEL = 1;
}
Type type = 1; // do we need this?
Stream stream = 2;
Channel channel = 3;
}