blob: 38300230e9ea783d03fb057e48d6e68998773641 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:blobstats/blob.dart';
class Package {
String path;
String name;
int size;
int proportional;
int private;
int blobCount;
Map<String, Blob> blobsByPath;
}