Compare commits

..

No commits in common. "3b692359c631291ee29112db6bbecb503009ff52" and "3db760dd966a082ab0f9178362522f5906109ef2" have entirely different histories.

2 changed files with 0 additions and 2 deletions

View File

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

View File

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