using System;
namespace MediaBrowser.Controller.Themes
{
    public class InternalThemeImage
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the cache tag.
        /// 
        /// The cache tag.
        public string CacheTag { get; set; }
        /// 
        /// Gets or sets the path.
        /// 
        /// The path.
        public string Path { get; set; }
        /// 
        /// Gets or sets the date modified.
        /// 
        /// The date modified.
        public DateTime DateModified { get; set; }
    }
}