Пример #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="RoomDetail" /> class.
        /// </summary>
        /// <param name="RoomAttributes">RoomAttributes.</param>
        /// <param name="RoomSystemInfo">RoomSystemInfo.</param>
        /// <param name="ImmutableRoomAttributes">ImmutableRoomAttributes.</param>
        public RoomDetail(RoomAttributes RoomAttributes = null, RoomSystemInfo RoomSystemInfo = null, ImmutableRoomAttributes ImmutableRoomAttributes = null)
        {
            this.RoomAttributes = RoomAttributes;

            this.RoomSystemInfo = RoomSystemInfo;

            this.ImmutableRoomAttributes = ImmutableRoomAttributes;
        }
Пример #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="V2RoomDetail" /> class.
        /// </summary>
        /// <param name="RoomAttributes">RoomAttributes.</param>
        /// <param name="RoomSystemInfo">RoomSystemInfo.</param>
        public V2RoomDetail(V2RoomAttributes RoomAttributes = null, RoomSystemInfo RoomSystemInfo = null)
        {
            this.RoomAttributes = RoomAttributes;

            this.RoomSystemInfo = RoomSystemInfo;
        }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="V2RoomDetail" /> class.
 /// </summary>
 /// <param name="RoomAttributes">RoomAttributes.</param>
 /// <param name="RoomSystemInfo">RoomSystemInfo.</param>
 public V2RoomDetail(V2RoomAttributes RoomAttributes = default(V2RoomAttributes), RoomSystemInfo RoomSystemInfo = default(RoomSystemInfo))
 {
     this.RoomAttributes = RoomAttributes;
     this.RoomSystemInfo = RoomSystemInfo;
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RoomDetail" /> class.
 /// </summary>
 /// <param name="RoomAttributes">RoomAttributes.</param>
 /// <param name="RoomSystemInfo">RoomSystemInfo.</param>
 /// <param name="ImmutableRoomAttributes">ImmutableRoomAttributes.</param>
 public RoomDetail(RoomAttributes RoomAttributes = default(RoomAttributes), RoomSystemInfo RoomSystemInfo = default(RoomSystemInfo), ImmutableRoomAttributes ImmutableRoomAttributes = default(ImmutableRoomAttributes))
 {
     this.RoomAttributes          = RoomAttributes;
     this.RoomSystemInfo          = RoomSystemInfo;
     this.ImmutableRoomAttributes = ImmutableRoomAttributes;
 }