18 lines
458 B
C#
18 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HotelAbstractions.Models
|
|
{
|
|
public class Hotel
|
|
{
|
|
public int Id { get; set; }
|
|
public string HotelName { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public int CountStar { get; set; }
|
|
public int CountRoom { get; set; }
|
|
}
|
|
}
|