| | | 1 | | #nullable disable |
| | | 2 | | #pragma warning disable CS1591 |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | using MediaBrowser.Model.Configuration; |
| | | 6 | | |
| | | 7 | | namespace MediaBrowser.Model.Entities |
| | | 8 | | { |
| | | 9 | | /// <summary> |
| | | 10 | | /// Used to hold information about a user's list of configured virtual folders. |
| | | 11 | | /// </summary> |
| | | 12 | | public class VirtualFolderInfo |
| | | 13 | | { |
| | | 14 | | /// <summary> |
| | | 15 | | /// Initializes a new instance of the <see cref="VirtualFolderInfo"/> class. |
| | | 16 | | /// </summary> |
| | | 17 | | public VirtualFolderInfo() |
| | | 18 | | { |
| | 2 | 19 | | Locations = Array.Empty<string>(); |
| | 2 | 20 | | } |
| | | 21 | | |
| | | 22 | | /// <summary> |
| | | 23 | | /// Gets or sets the name. |
| | | 24 | | /// </summary> |
| | | 25 | | /// <value>The name.</value> |
| | | 26 | | public string Name { get; set; } |
| | | 27 | | |
| | | 28 | | /// <summary> |
| | | 29 | | /// Gets or sets the locations. |
| | | 30 | | /// </summary> |
| | | 31 | | /// <value>The locations.</value> |
| | | 32 | | public string[] Locations { get; set; } |
| | | 33 | | |
| | | 34 | | /// <summary> |
| | | 35 | | /// Gets or sets the type of the collection. |
| | | 36 | | /// </summary> |
| | | 37 | | /// <value>The type of the collection.</value> |
| | | 38 | | public CollectionTypeOptions? CollectionType { get; set; } |
| | | 39 | | |
| | | 40 | | public LibraryOptions LibraryOptions { get; set; } |
| | | 41 | | |
| | | 42 | | /// <summary> |
| | | 43 | | /// Gets or sets the item identifier. |
| | | 44 | | /// </summary> |
| | | 45 | | /// <value>The item identifier.</value> |
| | | 46 | | public string ItemId { get; set; } |
| | | 47 | | |
| | | 48 | | /// <summary> |
| | | 49 | | /// Gets or sets the primary image item identifier. |
| | | 50 | | /// </summary> |
| | | 51 | | /// <value>The primary image item identifier.</value> |
| | | 52 | | public string PrimaryImageItemId { get; set; } |
| | | 53 | | |
| | | 54 | | public double? RefreshProgress { get; set; } |
| | | 55 | | |
| | | 56 | | public string RefreshStatus { get; set; } |
| | | 57 | | } |
| | | 58 | | } |