diff options
author | fiaxh <git@lightrise.org> | 2020-03-29 20:23:47 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-03-29 20:24:39 +0200 |
commit | 12cd56612dd6edd056e2cd8aae59ea3ae8f05d1e (patch) | |
tree | 1da6667e85128aad0c2992b3c2b490f42defce6f /xmpp-vala/src/module/xep/0030_service_discovery | |
parent | 853dfa2d6f0d1300b096f0c6a12ca179208f5287 (diff) | |
download | dino-12cd56612dd6edd056e2cd8aae59ea3ae8f05d1e.tar.gz dino-12cd56612dd6edd056e2cd8aae59ea3ae8f05d1e.zip |
Store entity identity info, use it in conversation list tooltips
Diffstat (limited to 'xmpp-vala/src/module/xep/0030_service_discovery')
-rw-r--r-- | xmpp-vala/src/module/xep/0030_service_discovery/identity.vala | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0030_service_discovery/identity.vala b/xmpp-vala/src/module/xep/0030_service_discovery/identity.vala index e29eb111..43aecfb2 100644 --- a/xmpp-vala/src/module/xep/0030_service_discovery/identity.vala +++ b/xmpp-vala/src/module/xep/0030_service_discovery/identity.vala @@ -4,6 +4,10 @@ public class Identity { public const string CATEGORY_CLIENT = "client"; public const string CATEGORY_CONFERENCE = "conference"; + public const string TYPE_PC = "pc"; + public const string TYPE_PHONE = "phone"; + public const string TYPE_TABLET = "tablet"; + public string category { get; set; } public string type_ { get; set; } public string? name { get; set; } @@ -15,4 +19,4 @@ public class Identity { } } -}
\ No newline at end of file +} |