Mercurial > pidgin.yaz
view plugins/mono/api/Buddy.cs @ 12356:4b8c20fcecd6
[gaim-migrate @ 14660]
Bias the color selection away from the nick highlight and send colors.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 05 Dec 2005 19:10:04 +0000 |
parents | a3302d271199 |
children |
line wrap: on
line source
namespace Gaim { public class Buddy { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }