6 lines
92 B
TypeScript

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