angular4-testing/blog-complete/app/blog/blog-entry.ts

7 lines
91 B
TypeScript
Raw Normal View History

2017-02-27 01:44:23 +01:00
export class BlogEntry {
2017-02-27 11:45:59 +01:00
id :number;
2017-02-27 01:44:23 +01:00
title: string;
text: string;
image: string;
}