view plugins/mono/api/Buddy.cs @ 14190:366be2ce35a7

[gaim-migrate @ 16854] Generates the image for the about dialog on demand instead of making it a stock image which remains in memory forever. committer: Tailor Script <tailor@pidgin.im>
author Aaron Sheldon <aaronsheldon>
date Sat, 19 Aug 2006 00:24:14 +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; } }
	}
}