7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
|
export interface ISku {
|
||
|
id?: number,
|
||
|
name: string,
|
||
|
status: string,
|
||
|
content: string
|
||
|
}
|