tejani commited on
Commit
01b0e34
·
verified ·
1 Parent(s): 2c2827b

Upload device.py

Browse files
Files changed (1) hide show
  1. backend/models/device.py +9 -0
backend/models/device.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from pydantic import BaseModel
2
+
3
+
4
+ class DeviceInfo(BaseModel):
5
+ device_type: str
6
+ device_name: str
7
+ os: str
8
+ platform: str
9
+ processor: str