namespace MediaBrowser.Model.Configuration
{
///
/// The convention used for naming saved images.
///
public enum ImageSavingConvention
{
///
/// The legacy naming convention.
///
Legacy,
///
/// The naming convention compatible with other media servers and metadata managers.
///
Compatible
}
}