Subd/server/controllers/thread/thread.dto.ts
2024-04-23 12:08:46 +04:00

6 lines
92 B
TypeScript

export interface IThreadDto {
name: string;
section_id: number;
creator_id: number;
}