mirror of
https://github.com/LBRYFoundation/types.git
synced 2025-08-23 17:47:32 +00:00
17 lines
250 B
Protocol Buffer
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;
|
|
}
|