gh-issue-search / model.py
terapyon's picture
added date filter and comment filter and show date, label refs #5
648f519
raw
history blame contribute delete
No virus
203 Bytes
from dataclasses import dataclass
@dataclass(frozen=True)
class Issue:
repo_name: str
id: int
title: str
created_at: int
user: str
url: str
labels: list[str]
type_: str