internal FMessage(WhatsAppApi.Account.WhatsUser remote_user, bool from_me) { this.status = Status.Undefined; this.gap_behind = true; this.User = remote_user; this.identifier_key = new FMessageIdentifierKey(remote_user.GetFullJid(), from_me, TicketManager.GenerateId()); }
public FMessage(WhatsAppApi.Account.WhatsUser remote_user, string data, object image) : this(remote_user, true) { this.data = data; this.thumb_image = image; this.timestamp = new DateTime?(DateTime.Now); }