aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/SyncedFileInfo.cs
blob: a626738fb2a2f65638fdae170926169efe039e65 (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
#pragma warning disable CS1591

using System.Collections.Generic;
using MediaBrowser.Model.MediaInfo;

namespace MediaBrowser.Controller.Sync
{
    public class SyncedFileInfo
    {
        public SyncedFileInfo()
        {
            RequiredHttpHeaders = new Dictionary<string, string>();
        }

        /// <summary>
        /// Gets or sets the path.
        /// </summary>
        /// <value>The path.</value>
        public string Path { get; set; }

        public string[] PathParts { get; set; }

        /// <summary>
        /// Gets or sets the protocol.
        /// </summary>
        /// <value>The protocol.</value>
        public MediaProtocol Protocol { get; set; }

        /// <summary>
        /// Gets or sets the required HTTP headers.
        /// </summary>
        /// <value>The required HTTP headers.</value>
        public Dictionary<string, string> RequiredHttpHeaders { get; set; }

        /// <summary>
        /// Gets or sets the identifier.
        /// </summary>
        /// <value>The identifier.</value>
        public string Id { get; set; }
    }
}