view plugins/mono/api/Buddy.cs @ 13918:61ba85cf05a6

[gaim-migrate @ 16421] Paco-Paco thinks it would be good to make libgnt configure look for ncursesw. Thanks to rekkanoryo and grim, we can do that. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 04 Jul 2006 18:49:13 +0000
parents a3302d271199
children
line wrap: on
line source

namespace Gaim
{
	public class Buddy
	{
		private string name;
		private string alias;
				
		public string Name { get { return name; } set { name = value; } }
		public string Alias { get { return alias; } set { alias = value; } }
	}
}