mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 13:10:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			213 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			213 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
message File {
 | 
						|
	int64 id = 1;
 | 
						|
	string filename = 2;
 | 
						|
	int64 size = 3;
 | 
						|
	int64 createdAt = 4;
 | 
						|
	bool isPublic = 5;
 | 
						|
	string mimeType = 6;
 | 
						|
	string type = 7;
 | 
						|
} |