12 lines
221 B
TypeScript
Raw Normal View History

2018-04-06 23:01:07 +02:00
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;
2018-04-06 23:01:07 +02:00
}