RepoTransfer/defs/models.py

10 lines
150 B
Python
Raw Normal View History

2024-03-20 15:10:14 +00:00
from pydantic import BaseModel
class GithubRepo(BaseModel):
name: str
full_name: str
private: bool
html_url: str
clone_url: str