14 lines
217 B
Python
14 lines
217 B
Python
|
from typing import List
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class Material(BaseModel):
|
||
|
name: str
|
||
|
description: str
|
||
|
sortorder: int
|
||
|
rarity: str
|
||
|
category: str
|
||
|
materialtype: str
|
||
|
source: List[str]
|