9 lines
		
	
	
		
			105 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			105 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from .base import Base
 | 
						|
 | 
						|
 | 
						|
class Setting(Base):
 | 
						|
  name: str
 | 
						|
  value: str
 | 
						|
  def ext(self):
 | 
						|
    return 'set'
 |