using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Storage.Models { public class StorageNavigationRequest { /// /// Gets or sets the request intent. /// public StorageNavigationIntent Intent { get; set; } /// /// Gets or sets the file display filter (e.g .tup|.job|.tcc). /// public String Filter { get; set; } /// /// Gets or sets the default file name when saving a file. /// public String DefaultFileName { get; set; } /// /// Gets or sets the title. /// public String Title { get; set; } } }