Show cards on event card

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-04-24 20:49:52 +02:00
parent 690620cdff
commit 445619db8b
6 changed files with 47 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import { Actor, IActor } from './actor.model';
import { IAddress } from '@/types/address.model';
import { ITag } from '@/types/tag.model';
export enum EventStatus {
TENTATIVE,

View File

@@ -0,0 +1,4 @@
export interface ITag {
slug: string;
title: string;
}