blob: 42e7a37e024c78855a3abacd411f55e88cb5e096 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
using System.Collections.Generic;
namespace MediaBrowser.Model.System;
/// <summary>
/// Contains informations about the systems storage.
/// </summary>
public class SystemStorageInfo
{
/// <summary>
/// Gets or sets the program data path.
/// </summary>
/// <value>The program data path.</value>
public required FolderStorageInfo ProgramDataFolder { get; set; }
/// <summary>
/// Gets or sets the web UI resources path.
/// </summary>
/// <value>The web UI resources path.</value>
public required FolderStorageInfo WebFolder { get; set; }
/// <summary>
/// Gets or sets the items by name path.
/// </summary>
/// <value>The items by name path.</value>
public required FolderStorageInfo ImageCacheFolder { get; set; }
/// <summary>
/// Gets or sets the cache path.
/// </summary>
/// <value>The cache path.</value>
public required FolderStorageInfo CacheFolder { get; set; }
/// <summary>
/// Gets or sets the log path.
/// </summary>
/// <value>The log path.</value>
public required FolderStorageInfo LogFolder { get; set; }
/// <summary>
/// Gets or sets the internal metadata path.
/// </summary>
/// <value>The internal metadata path.</value>
public required FolderStorageInfo InternalMetadataFolder { get; set; }
/// <summary>
/// Gets or sets the transcode path.
/// </summary>
/// <value>The transcode path.</value>
public required FolderStorageInfo TranscodingTempFolder { get; set; }
/// <summary>
/// Gets or sets the storage informations of all libraries.
/// </summary>
public required IReadOnlyCollection<LibraryStorageInfo> Libraries { get; set; }
}
|