9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from schemas.base import CustomModelCamel
 | 
						|
 | 
						|
 | 
						|
class UserSchema(CustomModelCamel):
 | 
						|
    id: int
 | 
						|
    telegram_id: int
 | 
						|
    phone_number: str | None = None
 | 
						|
    is_admin: bool
 |