aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Themes/ThemeImage.cs
blob: 2fe0820ae14ce8b61ab4708df38cf7772f301cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Themes
{
    public class ThemeImage
    {
        /// <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; }
    }
}