Skip to content
Snippets Groups Projects
Select Git revision
  • b986c60f51decbff9cc3fb961cfb473d2b326038
  • master default
2 results

Contact.vala

Blame
  • Contact.vala 1.17 KiB
    /**
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License version 2 as
     * published by the Free Software Foundation.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License along
     * with this program; if not, write to the Free Software Foundation, Inc.,
     * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
     *
     * AUTHORS
     * gyan000 <gyan000 (at] ijaz.fr>
     */
    namespace EOSConnect {
    
        public class Contact : Object {
    
            public string name { get; private set; }
            public string international_phone_number { get; private set; }
            public string photo_uri { get; private set; }
    
            public Contact (string name, string international_phone_number, string photo_uri) {
                this.name = name;
                this.international_phone_number = international_phone_number;
                this.photo_uri = photo_uri;
            }
        }
    }