﻿
/*
* This constructor is used by camera drop down list populator.
*/
function CameraList(MapAreaId, Name, Url, EntityIntId) {

    this.mapAreaId = MapAreaId;
    this.name      = Name;
    this.url       = Url;
    this.entityId  = EntityIntId;
}


/*
* This constructor is used by weather drop down list.
*/
function WeatherList(name, period1, summary1, temperature1, icon1, period2, summary2, temperature2, icon2) {

    this.name         = name;
    this.period1      = period1;
    this.summary1     = summary1;
    this.temperature1 = temperature1;
    this.icon1        = icon1;
    this.period2      = period2;
    this.summary2     = summary2;
    this.temperature2 = temperature2;
    this.icon2        = icon2;
}


