/*
 * Copyright (c) 2023 ETH Zürich, IT Services
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
namespace SafeExamBrowser.Monitoring.Contracts.Display
{
	/// 
	/// Provides the result of a display configuration validation.
	/// 
	public class ValidationResult
	{
		/// 
		/// Specifies the count of external displays detected.
		/// 
		public int ExternalDisplays { get; set; }
		/// 
		/// Specifies the count of internal displays detected.
		/// 
		public int InternalDisplays { get; set; }
		/// 
		/// Indicates whether the active display configuration is allowed.
		/// 
		public bool IsAllowed { get; set; }
	}
}