Don't use GObject/properties for JoinResult

This commit is contained in:
Marvin W 2020-01-09 13:37:40 +01:00
parent 8cca049e5c
commit 3650288a11
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
1 changed files with 4 additions and 4 deletions

View File

@ -54,10 +54,10 @@ public enum Feature {
UNSECURED
}
public class JoinResult : Object {
public MucEnterError? muc_error { get; set; }
public string? stanza_error { get; set; }
public string? nick { get; set; }
public class JoinResult {
public MucEnterError? muc_error;
public string? stanza_error;
public string? nick;
}
public class Module : XmppStreamModule {