mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:16:38 +00:00
18 lines
448 B
C#
18 lines
448 B
C#
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
|
|
}
|
|
}
|