Mercurial > pidgin
view libpurple/plugins/mono/api/Buddy.cs @ 32708:c2df5063d430
It appears that no-one needs this AopMenu struct after the combo
box is updated.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Thu, 29 Dec 2011 05:40:11 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
namespace Purple { public class Buddy : BlistNode { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }
