Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 25637:d03177395ae0
merge of '7dc734d96688ae822246be79196106858b5e6670'
and 'ca41f163a139123ff8ac7752424944338396520f'
author | Peter Hjalmarsson <xake@rymdraket.net> |
---|---|
date | Wed, 25 Feb 2009 22:59:41 +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; } } } }