8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
|
export interface ISla {
|
||
|
id?: number,
|
||
|
name?: string,
|
||
|
status?: string,
|
||
|
content?: string,
|
||
|
catalogId?: number
|
||
|
}
|