﻿if ( !window.Entities )
    window.Entities = {};
    
Entities.KayakKey = function( key )
{
    this.key = key.replace(/^\s|\s$/g,"");
}
Entities.KayakKey.prototype.key = null;
Entities.KayakKey.prototype.getKey = function()
{
    return this.key;
}