mirror of
https://github.com/langgenius/dify.git
synced 2026-03-07 09:00:46 -05:00
11 lines
155 B
Python
11 lines
155 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class AssetItem:
|
|
asset_id: str
|
|
path: str
|
|
file_name: str
|
|
extension: str
|
|
storage_key: str
|