Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 28954:68cd5a8a3ffe
merge of '12cc2cc3c1e0012329832ea2d170dca5b31f8b9b'
and 'bd023f94e67f08aef22c1e266f1cd1eac0dfd998'
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Wed, 03 Feb 2010 21:37:42 +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; } } } }
