﻿SnapInfo = function (sysT, snapRecords) {
    this.sysT = sysT;
    this.snapRecords = snapRecords;
}

SnapRecord = function (gid, uid, atp, rse, clyid, price, una, lti, cti, sbti, seti, st) {
    this.gid = gid;
    this.uid = uid;
    this.atp = atp;
    this.rse = rse;
    this.price = price;
    this.una = una;
    this.ltime = lti;
    this.cti = cti;
    this.sbtime = sbti;
    this.setime = seti;
    this.st = st;
}

