Advertisement
banyucenter

Wisata.cs

Nov 8th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace PariwisataApp
  5. {
  6.     public class Wisata
  7.     {
  8.         public Wisata()
  9.         {
  10.         }
  11.  
  12.         public int id { get; set; }
  13.         public int id_kabupaten { get; set; }
  14.         public int id_jenis_wisata { get; set; }
  15.         public string nama_wisata { get; set; }
  16.         public string harga_tiket { get; set; }
  17.         public string jam_buka { get; set; }
  18.         public string jam_tutup { get; set; }
  19.         public string alamat { get; set; }
  20.         public string no_telp { get; set; }
  21.         public string no_wa { get; set; }
  22.         public string instagram { get; set; }
  23.         public string facebook { get; set; }
  24.         public string twitter { get; set; }
  25.         public string email { get; set; }
  26.         public string website { get; set; }
  27.         public string foto { get; set; }
  28.         public string video { get; set; }
  29.         public string keterangan { get; set; }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement