Renamed prefixes in angular.json
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
This commit is contained in:
15
projects/common/src/fm/models/itemTask.ts
Normal file
15
projects/common/src/fm/models/itemTask.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
export interface IItemTask {
|
||||
code?: string;
|
||||
taskType?: string;
|
||||
attributes?:any
|
||||
}
|
||||
|
||||
export class ItemTask implements IItemTask {
|
||||
public code?:string;
|
||||
public taskType?: string;
|
||||
public attributes?: any;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user