2020-06-01 21:13:56 +03:00
|
|
|
abstract class WalletCredentials {
|
2020-06-20 10:10:00 +03:00
|
|
|
WalletCredentials({this.name, this.password});
|
2020-06-01 21:13:56 +03:00
|
|
|
|
|
|
|
final String name;
|
2020-06-20 10:10:00 +03:00
|
|
|
String password;
|
2020-06-01 21:13:56 +03:00
|
|
|
}
|