diff options
Diffstat (limited to 'src/lib/Data')
| -rw-r--r-- | src/lib/Data/AWC.ts | 12 |
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[]; +} |