CreatePostBodyDto: {
    allowFileDownload?: boolean;
    challengeTaskId?: string;
    content: string;
    fileIds?: string[];
    isAnonymous?: boolean;
    publishAt?: string | null;
    tags?: string[];
    title?: string;
    type?:
        | "NOTICE"
        | "GENERAL"
        | "QUESTION"
        | "FEEDBACK";
}