You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
using System.Text.Json;
|
|
|
|
namespace Jellyfin.Server.Models
|
|
{
|
|
/// <summary>
|
|
/// Json Options.
|
|
/// </summary>
|
|
public static class JsonOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets CamelCase json options.
|
|
/// </summary>
|
|
public static JsonSerializerOptions CamelCase
|
|
{
|
|
get
|
|
{
|
|
var options = DefaultJsonOptions;
|
|
options.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
|
|
return options;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets PascalCase json options.
|
|
/// </summary>
|
|
public static JsonSerializerOptions PascalCase
|
|
{
|
|
get
|
|
{
|
|
var options = DefaultJsonOptions;
|
|
options.PropertyNamingPolicy = null;
|
|
return options;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets base Json Serializer Options.
|
|
/// </summary>
|
|
private static JsonSerializerOptions DefaultJsonOptions => new JsonSerializerOptions();
|
|
}
|
|
}
|