15 lines
522 B
Dart
15 lines
522 B
Dart
class LoginKeys {
|
|
static const String email = 'loginEmail';
|
|
static const String password = 'loginPassword';
|
|
static const String url = 'loginUrl';
|
|
static const String loginSelfHost = 'loginSelfHost';
|
|
static const String secret = 'loginSecret';
|
|
static const String oneTimePassword = 'loginOneTimePassword';
|
|
}
|
|
|
|
class ProductKeys {
|
|
static const String fab = 'productFab';
|
|
static const String productKey = 'productKey';
|
|
static const String notes = 'productNotes';
|
|
static const String cost = 'productCost';
|
|
} |