2018-04-13 18:29:18 +02:00

12 lines
221 B
TypeScript

import { Team } from './team';
export class Slide {
id: number = null;
title: String = '';
team: Team = null;
slideData: String = '';
isVisible = true;
createdAt: String = null;
updatedAt: String = null;
}