mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default class Server {
 | |
|     constructor({
 | |
|         identifier,
 | |
|         uuid,
 | |
|         name,
 | |
|         node,
 | |
|         description,
 | |
|         allocation,
 | |
|         limits,
 | |
|         feature_limits
 | |
|     }) {
 | |
|         this.identifier = identifier;
 | |
|         this.uuid = uuid;
 | |
|         this.name = name;
 | |
|         this.node = node;
 | |
|         this.description = description;
 | |
|         this.allocation = allocation;
 | |
|         this.limits = limits;
 | |
|         this.feature_limits = feature_limits;
 | |
|     }
 | |
| }
 | 
