Mercurial > pidgin
view plugins/mono/api/Buddy.cs @ 12836:339d61ebca8a
[gaim-migrate @ 15184]
Revert the extra portion of my last commit that snuck in because I committed from the wrong tree.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Wed, 11 Jan 2006 23:18:52 +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; } } } }
