aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ImageSavingConvention.cs
blob: c67f379fde796805a0d9dbe9ebf3932eed3634b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Configuration
{
    /// <summary>
    /// The convention used for naming saved images.
    /// </summary>
    public enum ImageSavingConvention
    {
        /// <summary>
        /// The legacy naming convention.
        /// </summary>
        Legacy,

        /// <summary>
        /// The naming convention compatible with other media servers and metadata managers.
        /// </summary>
        Compatible
    }
}