mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-04-21 18:20:18 +00:00
18 lines
315 B
Python
18 lines
315 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class _Ocr_ScoreDateSource:
|
|
FileCreated: str = "FileCreated"
|
|
FileLastModified: str = "FileLastModified"
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class _Ocr:
|
|
DateSource = _Ocr_ScoreDateSource()
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class SettingsValues:
|
|
Ocr = _Ocr()
|