zgo/src/app/posts/post.model.ts

6 lines
73 B
TypeScript
Raw Normal View History

2021-10-15 19:14:49 +00:00
export interface Post {
id: string;
title: string;
content: string;
}