Skip to content

Commit

Permalink
Step 12.10: Create Picture model
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 13, 2017
1 parent 11fb301 commit b223c56
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions imports/models.ts
Expand Up @@ -40,3 +40,19 @@ export interface Location {
lng: number;
zoom: number;
}

export interface Picture {
_id?: string;
complete?: boolean;
extension?: string;
name?: string;
progress?: number;
size?: number;
store?: string;
token?: string;
type?: string;
uploadedAt?: Date;
uploading?: boolean;
url?: string;
userId?: string;
}

0 comments on commit b223c56

Please sign in to comment.