aboutsummaryrefslogtreecommitdiff
path: root/QSThingsPlugin/Types
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-09-10 11:32:28 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-09-10 11:32:28 +0200
commitc791858db3de3568f0ea2839c79b360a0dfb15ab (patch)
tree7cf50c93cdf03075d10c14c8ad1f7a646b2a05c7 /QSThingsPlugin/Types
Initial commit
Diffstat (limited to 'QSThingsPlugin/Types')
-rw-r--r--QSThingsPlugin/Types/Constants.h7
-rw-r--r--QSThingsPlugin/Types/Constants.m7
2 files changed, 14 insertions, 0 deletions
diff --git a/QSThingsPlugin/Types/Constants.h b/QSThingsPlugin/Types/Constants.h
new file mode 100644
index 0000000..e365a8f
--- /dev/null
+++ b/QSThingsPlugin/Types/Constants.h
@@ -0,0 +1,7 @@
+#pragma mark - Things Object Types
+
+extern NSString *const kAppSectionType;
+extern NSString *const kProjectType;
+extern NSString *const kAreaType;
+extern NSString *const kTagType;
+extern NSString *const kTaskType;
diff --git a/QSThingsPlugin/Types/Constants.m b/QSThingsPlugin/Types/Constants.m
new file mode 100644
index 0000000..4abf9f7
--- /dev/null
+++ b/QSThingsPlugin/Types/Constants.m
@@ -0,0 +1,7 @@
+#pragma mark - Things Object Types
+
+NSString *const kAppSectionType = @"things.app-section";
+NSString *const kProjectType = @"things.project";
+NSString *const kAreaType = @"things.area";
+NSString *const kTagType = @"things.tag";
+NSString *const kTaskType = @"things.task";