using System.Collections.Generic; using GxPress.Entity.WorkMeeting; namespace GxPress.Request.App.WorkMeeting { public class MeetingRoomsResult { /// /// 会议地点列表 /// public IEnumerable Locations { get; set; } /// /// 会议室列表 /// public IEnumerable Rooms { get; set; } } }