mirror of
https://github.com/ErfanRht/MovieLab.git
synced 2025-08-06 03:19:43 +08:00
8 lines
176 B
Dart
8 lines
176 B
Dart
class UserFields {
|
|
static const int name = 0;
|
|
static const int username = 1;
|
|
static const int email = 2;
|
|
static const int phone = 3;
|
|
static const int imageUrl = 4;
|
|
}
|