view libpurple/plugins/mono/api/Status.cs @ 17631:49fe31a64716

Fixed a bug that prevented multi-stage ad-hoc commands.
author Andreas Monitzer <pidgin@monitzer.com>
date Wed, 11 Jul 2007 02:36:42 +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; } }
	}
}