export interface ITestimonialImage {
  id: number;
  cdnUrl: string;
  fileName: string;
  filePath: string;
  uniqueName: string;
}

export interface ITestimonial {
  id: number;
  status: number;
  name: string;
  designation: string;
  createdAt: string;
  updatedAt: string;
  content: string;
  image: ITestimonialImage;
}

export interface ITestimonialsResponseData {
  data: ITestimonial[];
  page: number;
  perPage: number;
  totalRecords: number;
  totalPages: number;
}
