import { TLogAction } from "@/shared/types/home/logs";
import { TUser } from "./auth.types";

export type TLogItem = {
  id: number;
  action: TLogAction;
  model: string;
  object_id: number;
  created_at: string;
  user_data: TUser;
};

export type TLogResponse = {
  count: number;
  next: string | null;
  previous: string | null;
  results: TLogItem[];
};
