blob: 6d3fe77eadcbe0c2e9bba36c78223ce3597682dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Storage.Models
{
public class StorageNavigationRequest
{
/// <summary>
/// Gets or sets the request intent.
/// </summary>
public StorageNavigationIntent Intent { get; set; }
/// <summary>
/// Gets or sets the file display filter (e.g .tup|.job|.tcc).
/// </summary>
public String Filter { get; set; }
/// <summary>
/// Gets or sets the default file name when saving a file.
/// </summary>
public String DefaultFileName { get; set; }
/// <summary>
/// Gets or sets the title.
/// </summary>
public String Title { get; set; }
}
}
|