annotate libgaim/plugins/mono/api/Buddy.cs @ 15104:cb7eef7bf550

[gaim-migrate @ 17890] Fix up some of the example perl plugins. They still could use some work, but these will at least load now. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 04 Dec 2006 04:52:46 +0000
parents 58849b67f00d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14993
58849b67f00d [gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents: 14192
diff changeset
1 namespace Gaim {
58849b67f00d [gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents: 14192
diff changeset
2 public class Buddy : BlistNode {
14192
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
3 private string name;
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
4 private string alias;
14993
58849b67f00d [gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents: 14192
diff changeset
5
14192
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
6 public string Name { get { return name; } set { name = value; } }
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
7 public string Alias { get { return alias; } set { alias = value; } }
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
8 }
60b1bc8dbf37 [gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
diff changeset
9 }