Mercurial > pidgin
view plugins/mono/api/Buddy.cs @ 12410:bc249de5ea02
[gaim-migrate @ 14717]
Include .h files corresponding to the respective .c files to clear up prototype warnings.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Thu, 08 Dec 2005 20:59:33 +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; } } } }
