parent
c70201080b
commit
f422734cc8
|
@ -47,7 +47,11 @@ public class Message : Object {
|
||||||
public bool direction { get; set; }
|
public bool direction { get; set; }
|
||||||
public Jid? real_jid { get; set; }
|
public Jid? real_jid { get; set; }
|
||||||
public Type type_ { get; set; default = Type.UNKNOWN; }
|
public Type type_ { get; set; default = Type.UNKNOWN; }
|
||||||
public string? body { get; set; }
|
private string? body_;
|
||||||
|
public string? body {
|
||||||
|
get { return body_; }
|
||||||
|
set { body_ = value != null ? value.make_valid() : null; }
|
||||||
|
}
|
||||||
public string? stanza_id { get; set; }
|
public string? stanza_id { get; set; }
|
||||||
public string? server_id { get; set; }
|
public string? server_id { get; set; }
|
||||||
public DateTime? time { get; set; }
|
public DateTime? time { get; set; }
|
||||||
|
|
Loading…
Reference in a new issue