export interface Price {
  article_code: string;
  amount: string;
  currency?: string | undefined;
}

export interface ArticlePriceListSerializer {
  id: number;
  name: string;
  is_active: boolean;
  site_code: string;
  currency?: string | undefined;
}

export interface ArticlePriceSerializer {
  price_list: ArticlePriceListSerializer;
  amount: string;
}

export interface ArticlePriceUpdateSerializer {
  price_list_id: number;
  amount: string;
}
