Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 32307:d8c652ea476a
MXit: Move "inpa" input watcher from PurpleConnection into PurpleConnection->proto_data.
| author | andrew.victor@mxit.com |
|---|---|
| date | Tue, 18 Oct 2011 20:58:39 +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; } } } }
