Mercurial > pidgin
view plugins/mono/api/Buddy.cs @ 13258:fccf09946174
[gaim-migrate @ 15624]
Somehow my sed script deleted the contents of this file. Good thing
we don't use it anymore :-)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 12 Feb 2006 22:34:20 +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; } } } }