mindful-commons
Version:
17 lines (16 loc) • 448 B
TypeScript
import { ContentType } from "./content-type.enum";
import { MindfulAspects } from "./mindful-aspects.enum";
export declare class CreateContentDto {
creatorId: string;
title: string;
body: string;
slug: string;
digest?: string | null;
type: ContentType;
mindfulAspect: MindfulAspects;
featuredImageFileName: string;
vimeoVideoId?: number;
audioFileName?: string;
tags?: string[];
seriesId?: string;
}