view libpurple/plugins/mono/api/Buddy.cs @ 19618:a38ee5d9eedf

merge of 'bf68a58b8bbc1d43f4ebe7b94bd47282cb66f26e' and 'daa5fcdfa800915c5bed0df9809e1b367f6b56da'
author Ka-Hing Cheung <khc@hxbc.us>
date Mon, 03 Sep 2007 21:04:02 +0000
parents 93bfbda79bf6
children
line wrap: on
line source

namespace Purple {
	public class Buddy : BlistNode {
		private string name;
		private string alias;

		public string Name { get { return name; } set { name = value; } }
		public string Alias { get { return alias; } set { alias = value; } }
	}
}