view libpurple/plugins/mono/api/Buddy.cs @ 19906:26c73c337d8f

Adding the helloworld.c plugin used in the BasicPluginHowto and the PluginActionsHowto wiki pages
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 08 Sep 2007 00:06:51 +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; } }
	}
}