mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-03-11 17:13:49 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OwnedPath(BaseModel):
|
|
path: str
|
|
owner: str
|
|
group: str
|