// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the JsonSettings type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Json
{
using System.Text.Json;
public class JsonSettings
{
public static JsonSerializerOptions Options = new JsonSerializerOptions
{
IgnoreNullValues = true,
WriteIndented = true,
PropertyNameCaseInsensitive = true
};
}
}