/* * GNU AFFERO GENERAL PUBLIC LICENSE * Version 3, 19 November 2007 * Copyright (C) 2007 Free Software Foundation, Inc. * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. */ namespace UVtools.Core.Scripting { public class ScriptOpenFileDialogInput : ScriptFileDialogInput { /// /// Gets or sets if allow multiple file selection /// public bool AllowMultiple { get; set; } /// /// Gets or sets the selected files /// public string[] Files {get; set; } } }