Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 20806:b671eb078419
Don't ignore everything in finch/ that starts with "finch"
| author | Kevin Stange <kevin@simguy.net> |
|---|---|
| date | Sat, 06 Oct 2007 21:27: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; } } } }
