view libpurple/plugins/mono/api/Status.cs @ 24100:1efbc28b5042

Add GPL headers to the yahoo_auth files based on Sean's recollection of communication with the authors.
author Daniel Atallah <daniel.atallah@gmail.com>
date Thu, 11 Sep 2008 21:20:09 +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; } }
	}
}