Skip to content
Snippets Groups Projects
Select Git revision
  • 71abb2c424ef520d64c6b22996c214acf435f6c7
  • master default
  • host01
  • ns4
  • kodi
5 results

code.shore.co.il.conf

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;
            }
        }
    }