view plugins/mono/api/Status.cs @ 14115:8ea1929c4c69

[gaim-migrate @ 16749] Fix a bunch of warnings that I caused. Sorry, I should have compiled before committing. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 14 Aug 2006 07:27:41 +0000
parents 67fbd2ff4c4e
children
line wrap: on
line source

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