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

6 lines
73 B
TypeScript

export interface Post {
id: string;
title: string;
content: string;
}