I know there is a lot of material available on using prototypes but there seem to be a lot of different suggested methods and I'm trying to find mine. I'm really just looking for feedback on the structure below and if you'd see anything issues with it. Thanks in advance.
function Class(){}
Class.prototype = {
MethodOne: function() {
},
MethodTwo: function() {
},
MethodThree: function() {
}
}