RepoTransfer/defs/models.py

10 lines
150 B
Python

from pydantic import BaseModel
class GithubRepo(BaseModel):
name: str
full_name: str
private: bool
html_url: str
clone_url: str