Mercurial > pidgin
annotate libgaim/plugins/mono/api/Buddy.cs @ 15015:9dcd88cd7dee
[gaim-migrate @ 17797]
Don't allow the buddy list to get lost when switching "Show system tray icon" to "On Unread messages"
committer: Tailor Script <tailor@pidgin.im>
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Tue, 21 Nov 2006 02:24:19 +0000 |
| parents | 58849b67f00d |
| children |
| 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 | 3 private string name; |
| 4 private string alias; | |
|
14993
58849b67f00d
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14192
diff
changeset
|
5 |
| 14192 | 6 public string Name { get { return name; } set { name = value; } } |
| 7 public string Alias { get { return alias; } set { alias = value; } } | |
| 8 } | |
| 9 } |
