feat(v2.7): 增加通知与评论协作模块

This commit is contained in:
2026-07-08 16:13:33 +08:00
parent ad36ffda17
commit 95523cd4a1
13 changed files with 586 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import { IsString } from 'class-validator';
export class DeleteCommentDto {
@IsString()
actorId!: string;
}