mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-01 01:27:17 +00:00
8 lines
105 B
Python
8 lines
105 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class OwnedPath(BaseModel):
|
||
|
path: str
|
||
|
owner: str
|
||
|
group: str
|