interface.ts 383 Bytes
Newer Older
Ken's avatar
Ken committed
1
import { ICategory } from "components/interface";
Ken's avatar
Ken committed
2 3 4 5 6 7 8 9

export interface INewspaper {
  id: string;
  categoryId: string;
  title: string;
  description: string;
  image: string;
  createdAt: string;
Ken's avatar
Ken committed
10 11
  categorylink: string;
  categorylinkNavigation: ICategory;
Ken's avatar
Ken committed
12
  content: string;
Ken's avatar
Ken committed
13 14
}

Ken's avatar
Ken committed
15 16 17 18 19
export interface IPagination {
  Filters: string;
  Sorts: string;
  PageSize: number;
  Page: number;
Ken's avatar
Ken committed
20
}