﻿// Namespace declaration ...
if (!window.RHPConsulting)
    window.RHPConsulting = {};
    
RHPConsulting.ImageInfo = function(path, width, height) {
    
    this._path = path;
    this._width = width;
    this._height = height;
    
}
RHPConsulting.ImageInfo.prototype = {
    get_Path : function() {
        return this._path;
    },
    get_Width : function() {
        return this._width;
    },
    get_Height : function() {
        return this._height;
    }
}
