Advertisement
banyucenter

Hotel.cs

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