Mercurial > pidgin
view plugins/mono/api/Buddy.cs @ 12267:df93ed932b3a
[gaim-migrate @ 14569]
"This patch fixes formatting in the yahoo profile pages for items grabbed from the tooltip", so sayeth the Bleeter.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 30 Nov 2005 01:49:54 +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; } } } }