Compare commits

...

2 Commits

Author SHA1 Message Date
3b692359c6 Merge branch 'develop' of https://git.akkerweb.nl/FarmMaps/FarmMapsLib into develop
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
2024-09-16 15:35:27 +02:00
3d4042e8c6 AW6241 Add item owner 2024-09-16 15:35:24 +02:00
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ export class Item implements IItem {
public state?: number;
public data?:any;
public isEditable?:boolean;
public owner?: string;
constructor() {
}

View File

@ -11,4 +11,5 @@ export interface IListItem {
size?: number;
state?: number;
thumbnail?: boolean;
owner?: string;
}