You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/models/dashboard/get_open_missing_swipe.dart

30 lines
788 B
Dart

import 'dart:convert';
class GetOpenMissingSwipes {
int? pOpenMissingSwipes;
String? pReturnStatus;
String? pReturnMsg;
GetOpenMissingSwipes({
this.pOpenMissingSwipes,
this.pReturnStatus,
this.pReturnMsg,
});
factory GetOpenMissingSwipes.fromRawJson(String str) => GetOpenMissingSwipes.fromJson(json.decode(str));
String toRawJson() => json.encode(toJson());
factory GetOpenMissingSwipes.fromJson(Map<String, dynamic> json) => GetOpenMissingSwipes(
pOpenMissingSwipes: json["p_OPEN_MISSING_SWIPES"],
pReturnStatus: json["p_RETURN_STATUS"],
pReturnMsg: json["p_RETURN_MSG"],
);
Map<String, dynamic> toJson() => {
"p_OPEN_MISSING_SWIPES": pOpenMissingSwipes,
"p_RETURN_STATUS": pReturnStatus,
"p_RETURN_MSG": pReturnMsg,
};
}