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.
30 lines
721 B
Dart
30 lines
721 B
Dart
import 'package:flutter/src/widgets/framework.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:test_sa/controllers/api_routes/urls.dart';
|
|
import 'package:test_sa/extensions/context_extension.dart';
|
|
import 'package:test_sa/models/device/asset.dart';
|
|
import 'package:test_sa/models/fault_description.dart';
|
|
import 'package:test_sa/models/lookup.dart';
|
|
|
|
class InternalAuditModel {
|
|
String? id;
|
|
int? deviceId;
|
|
String? deviceArName;
|
|
String? woOrderNo;
|
|
List<String>? devicePhotos;
|
|
Lookup? auditCheckList;
|
|
String? comments;
|
|
Asset? device;
|
|
|
|
InternalAuditModel({
|
|
this.id,
|
|
this.deviceArName,
|
|
this.devicePhotos,
|
|
this.deviceId,
|
|
this.woOrderNo,
|
|
this.comments,
|
|
});
|
|
|
|
}
|
|
|