export type ContractType = 'Terms of agreements' | string;

export interface ProductData {
  id: number;
  name: string;
  created_at: string;
  updated_at: string;
}

export interface ContractData {
  id: number;
  name: string;
  description: string;
  type: ContractType;
  product: ProductData;
  content: string;
  created_at: string;
  updated_at: string;
}
