isolated metadata keys constants

This commit is contained in:
Arseni
2026-03-12 14:26:54 +03:00
parent 5085a55e44
commit 0ff850b1de
3 changed files with 22 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
abstract final class UploadMetadataKeys {
static const fileName = 'upload_filename';
static const legacyFileName = 'upload_file_name';
static const fallbackFileName = 'filename';
static const rows = 'upload_rows';
static const amount = 'upload_amount';
static const currency = 'upload_currency';
}