isolated metadata keys constants

This commit is contained in:
Arseni
2026-03-12 00:21:52 +03:00
parent 13b84e1e0f
commit 1bec1c2e9d
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';
}