5 lines
83 B
TypeScript
5 lines
83 B
TypeScript
|
export interface ISectionDto {
|
||
|
name: string;
|
||
|
root_section_id: number | null;
|
||
|
}
|