mirror of
https://github.com/Xtao-Labs/RepoTransfer.git
synced 2024-11-24 08:15:35 +00:00
10 lines
150 B
Python
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
|