17 lines
518 B
C#
17 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Domain;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
public class QuanJuVar
|
|
{
|
|
public static IList<RoomTypeModal> BaoJingUpLoad = new List<RoomTypeModal>();
|
|
public static IList<RoomTypeModal> RoomTypeDeviceModal = new List<RoomTypeModal>();
|
|
public static IList<HotelSeason> HotelSeaon = new List<HotelSeason>();
|
|
public static List<HotelAirControl> HotelAirControl = new List<HotelAirControl>();
|
|
}
|
|
}
|