16 lines
240 B
TypeScript
16 lines
240 B
TypeScript
|
|
||
|
export interface IItemTask {
|
||
|
code?: string;
|
||
|
taskType?: string;
|
||
|
attributes?:any
|
||
|
}
|
||
|
|
||
|
export class ItemTask implements IItemTask {
|
||
|
public code?:string;
|
||
|
public taskType?: string;
|
||
|
public attributes?: any;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|