Files
portfolio.web/src/app/blog/blog.model.ts
T
2024-05-06 23:20:51 +05:30

6 lines
113 B
TypeScript

import { IPost } from "../models/post.model";
export interface IBlog{
blogUrl: string;
posts: IPost[];
}