annotate plugins/mono/api/Status.cs @ 12307:cfffd6fdb073

[gaim-migrate @ 14611] fix sf bug #1371184, AIM Triton and Away/Available Messages "When a AIM Triton buddy returns from away, Gaim takes that away message and calls it a Available message." Ah, the joys of a closed protocol. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 03 Dec 2005 19:59:26 +0000
parents 67fbd2ff4c4e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11980
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
1 namespace Gaim
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
2 {
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
3 public class Status
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
4 {
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
5 private string id;
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
6
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
7 public string Id { get { return id; } set { id = value; } }
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
8 }
67fbd2ff4c4e [gaim-migrate @ 14273]
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
9 }