aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/xep/0030_service_discovery/item.vala
blob: 9d8f1f3eff84fe93d2d018546a7c57fac2346f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Xmpp.Xep.ServiceDiscovery {

public class Item {
    public string jid;
    public string? name;
    public string? node;

    public Item(string jid, string? name = null, string? node = null) {
        this.jid = jid;
        this.name = name;
        this.node = node;
    }
}

}