(function () { "use strict"; angular .module("app.models") .factory("appModels.photo", photoModels); function photoModels() { return { Photo: Photo }; function Photo() { this.id = null; this.name = null; this.tags = null; this.imageUrl = null; this.thumbnailImageUrl = null; this.location = null; this.locationId = null; } } })();