mirror of
				https://github.com/usememos/memos.git
				synced 2025-10-31 16:59:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			242 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			242 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package memos.store;
 | |
| 
 | |
| option go_package = "gen/store";
 | |
| 
 | |
| message InboxMessage {
 | |
|   enum Type {
 | |
|     TYPE_UNSPECIFIED = 0;
 | |
|     MEMO_COMMENT = 1;
 | |
|     VERSION_UPDATE = 2;
 | |
|   }
 | |
|   Type type = 1;
 | |
|   optional int32 activity_id = 2;
 | |
| }
 |