mono/Account.cs
author hallski <hallski>
Sun, 10 Sep 2006 22:09:45 +0000
changeset 175 5e665ffe3e9c
parent 48 d913b0d5c7b6
permissions -rw-r--r--
2006-09-11 Mikael Hallendal <micke@imendio.com> * Release 1.0.5


namespace Loudmouth {
    public class Account {
	public string username;
	public string password;
	public string resource;

	public Account (string username, string password, string resource) {
	    this.username = username;
	    this.password = password;
	    this.resource = resource;
	}
    }
}