﻿// JScript File

//Class Request
function Request(type)
{
    //viewer
    this.sourceViewer = null;
    this.targetViewer = null;
    
    //location 0,1,2
    this.targetLocation = null;
    this.sourceLocation = null;
    this.type = type;
    this.data = null;
    this.objectId = null;
}
