/* * Copyright 2017 Michael Gratton * * This software is licensed under the GNU Lesser General Public License * (version 2.1 or later). See the COPYING file in this distribution. */ public class Mock.EmailProperties : Geary.EmailProperties { public EmailProperties(GLib.DateTime received) { base(received, 0); } public override string to_string() { return "Mock.EmailProperties: %s/%lli".printf( this.date_received.to_string(), this.total_bytes ); } }