2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-27 21:16:48 +00:00

Move model representation code to sub-directory

This commit is contained in:
Oliver Walters 2020-04-01 00:04:55 +11:00
parent c05c07dd0a
commit bce0d959c5

View File

@ -1,4 +1,4 @@
import 'api.dart';
import 'package:InvenTree/api.dart';
import 'dart:convert';
@ -121,8 +121,6 @@ class InvenTreePartCategory extends InvenTreeObject {
// TODO ?
print("creating new category");
return cat;
}
}
@ -148,8 +146,6 @@ class InvenTreePart extends InvenTreeObject {
var part = InvenTreePart.fromJson(json);
print("creating new part!");
return part;
}