Add XML docs to small model enums and remove CS1591 suppressions

This commit is contained in:
mbastian77
2026-07-18 10:08:55 +02:00
parent dd0b273b26
commit 8ac2d1f7bc
8 changed files with 88 additions and 15 deletions
@@ -1,10 +1,18 @@
#pragma warning disable CS1591
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
}
}