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

View file

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