libgaim/plugins/mono/api/Buddy.cs

Sat, 18 Nov 2006 04:03:48 +0000

author
Gary Kramlich <grim@reaperworld.com>
date
Sat, 18 Nov 2006 04:03:48 +0000
changeset 15055
dc3454f0f1e3
parent 14254
77edc7a6191a
child 20470
77693555855f
permissions
-rw-r--r--

[gaim-migrate @ 17772]
A bit of long overdue work on this. There is no functional changes here, just getting started on this again :)

namespace Gaim {
	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; } }
	}
}

mercurial