13 lines
254 B
Dart
13 lines
254 B
Dart
class BaseWmsRequest {
|
|
final String standId;
|
|
final String? username;
|
|
|
|
BaseWmsRequest({required this.standId, this.username = "PDA"});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'standId': standId,
|
|
'username': username,
|
|
};
|
|
}
|
|
} |