aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Themes/InternalThemeImage.cs
blob: 2b676c25b7093a8e6e4dd89d2ccdec6ab4a1c32c (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;

namespace MediaBrowser.Controller.Themes
{
    public class InternalThemeImage
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the cache tag.
        /// </summary>
        /// <value>The cache tag.</value>
        public string CacheTag { get; set; }

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

        /// <summary>
        /// Gets or sets the date modified.
        /// </summary>
        /// <value>The date modified.</value>
        public DateTime DateModified { get; set; }
    }
}