aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Data/AWC.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Data/AWC.ts')
-rw-r--r--src/lib/Data/AWC.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/Data/AWC.ts b/src/lib/Data/AWC.ts
new file mode 100644
index 00000000..1237eaa0
--- /dev/null
+++ b/src/lib/Data/AWC.ts
@@ -0,0 +1,12 @@
+export interface AWCBadge {
+ link: string;
+ description: string;
+ image: string;
+ source: string;
+ designer: string;
+}
+
+export interface AWCBadgesGroup {
+ group: string;
+ badges: AWCBadge[];
+}