www.pudn.com > SMSTemplateApp.zip > Kontak.cs


using System; 
using System.Linq; 
using System.Collections.Generic; 
using System.Text; 
 
namespace SMSTemplateApp 
{ 
    public class Kontak 
    { 
        private string nama; 
 
        public string Nama 
        { 
            get { return nama; } 
            set { nama = value; } 
        } 
        private string nomorHP; 
 
        public string NomorHP 
        { 
            get { return nomorHP; } 
            set { nomorHP = value; } 
        } 
        private string panggilan; 
 
        public string Panggilan 
        { 
            get { return panggilan; } 
            set { panggilan = value; } 
        } 
    } 
}