view libpurple/plugins/mono/api/Status.cs @ 30559:55fb3dfd086b

Almost forgot to ChangeLog that. Refs #12024. Still need a name for the COPYRIGHT file.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 18 Sep 2010 17:34:35 +0000
parents 93bfbda79bf6
children
line wrap: on
line source

namespace Purple
{
	public class Status
	{
		private string id;
				
		public string Id { get { return id; } set { id = value; } }
	}
}