gidb-server/src/types/gliders.py

12 lines
189 B
Python

from typing import List
from pydantic import BaseModel
class Glider(BaseModel):
name: str
description: str
rarity: str
story: str
sortorder: int
source: List[str]