Skip to content

Instantly share code, notes, and snippets.

@thomas4g
Created March 27, 2012 21:41
Show Gist options
  • Save thomas4g/2220618 to your computer and use it in GitHub Desktop.
Save thomas4g/2220618 to your computer and use it in GitHub Desktop.
Proto OOP JS
var Mail = Mail || {};
Mail.Message = Mail.Message || {
from: "", //Contact
subject: "",
date: "",
body: ""
};
Mail.Contact = Mail.Contact || {
name: "",
email: ""
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment