Initial commit (Vesion 0.1)
[tablet-suite] / src / backup / pcsbackuplocation.py
diff --git a/src/backup/pcsbackuplocation.py b/src/backup/pcsbackuplocation.py
new file mode 100644 (file)
index 0000000..ab5d942
--- /dev/null
@@ -0,0 +1,11 @@
+# Class Backup_Category holds osso-backup .conf files informations
+
+class PcsBackupLocation:
+    """Backup_Location class.
+    Used for holding location attributes from parsed osso-backup xml files.
+
+    """
+    def __init__(self, type, category, path):
+        self.category = category
+        self.type = type
+        self.path = path