view libpurple/plugins/mono/api/Status.cs @ 26179:413b445a6018

Is there any reason this is an int instead of PurplePrivacyType? I believe this is safe to do without breaking binary or API compatibility, but someone please yell at me if not
author Mark Doliner <mark@kingant.net>
date Fri, 13 Mar 2009 02:21:27 +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; } }
	}
}