mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 10:07:51 -06:00
14 lines
323 B
Dart
14 lines
323 B
Dart
class UserCredentials {
|
|
final String? username;
|
|
final String? password;
|
|
|
|
UserCredentials({this.username, this.password});
|
|
|
|
UserCredentials copyWith({String? username, String? password}) {
|
|
return UserCredentials(
|
|
username: username ?? this.username,
|
|
password: password ?? this.password,
|
|
);
|
|
}
|
|
}
|