export interface LiteratureEntity {
    id: number;
    url: string;
    image: string;
    title: string;
    text: string;
    enabled: boolean;
}
