view plugins/mono/api/Status.cs @ 13772:95166d0d6037

[gaim-migrate @ 16184] Remove some print statements that were probably intended for debugging. Suppress printing "None" when there should be no output. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 12 May 2006 22:25:26 +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; } }
	}
}