using System.Collections.Generic;
using GxPress.Entity.WorkMeeting;
namespace GxPress.Request.App.WorkMeeting
{
///
///
///
public class MeetingRoomResult
{
///
/// 会议室名称
///
public string RoomName { get; set; }
///
///
///
///
public bool Disabled { get; set; }
///
/// 所有预订
///
public SortedDictionary> Orders { get; set; }
///
/// 用户预订
///
public SortedDictionary> UserOrders { get; set; }
///
/// 新版所有预订
///
///
public List OrderList { get; set; }
}
///
/// 新版所有预订
///
public class TimeDictionary
{
public TimeDictionary()
{
TimeValues = new List();
NewTimeValues=new List();
}
///
/// 日期
///
///
public string TimeKey { get; set; }
///
/// 时间
///
///
public List TimeValues { get; set; }
///
/// 时间
///
///
public List NewTimeValues { get; set; }
}
public class TimeValue
{
///
/// 小时
///
///
public int Key { get; set; }
///
/// 用户名称
///
///
public string Value { get; set; }
}
}