import { Locale } from './Locale';

export interface Dictionary {
  description: string;
  locale: Locale;
  name: string;
}
