mirror of
				https://github.com/usememos/memos.git
				synced 2025-10-31 16:59:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			247 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			247 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package memos.api.v1;
 | |
| 
 | |
| option go_package = "gen/api/v1";
 | |
| 
 | |
| message Reaction {
 | |
|   int32 id = 1;
 | |
| 
 | |
|   // The name of the creator.
 | |
|   // Format: users/{id}
 | |
|   string creator = 2;
 | |
| 
 | |
|   string content_id = 3;
 | |
| 
 | |
|   string reaction_type = 4;
 | |
| }
 |