Mercurial > pidgin.yaz
view plugins/mono/api/Status.cs @ 12358:d1af58b4a463
[gaim-migrate @ 14662]
This will save us from having to parse the send color for every buddy we add to a chat. That's probably not a big savings, but every little bit helps, right? Yeah, totally untested.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 05 Dec 2005 20:34:00 +0000 |
parents | 67fbd2ff4c4e |
children |
line wrap: on
line source
namespace Gaim { public class Status { private string id; public string Id { get { return id; } set { id = value; } } } }