python-no-senpai / model.py
shimizukawa's picture
initial modify
c56ab56
raw
history blame
167 Bytes
from dataclasses import dataclass
@dataclass(frozen=True)
class Doc:
project_name: str
id: int
title: str
created_at: int
user: str
url: str