User
Add project files.
3418204
Raw
History Blame Contribute Delete
427 Bytes
using System.Text.Json;
namespace TaskTrackingSystem.WebApp.Components.Partial
{
public static class Serialization
{
public static readonly JsonSerializerOptions CaseInsensitive = new()
{
PropertyNameCaseInsensitive = true
};
public static readonly JsonSerializerOptions PaginationOptions = new()
{
PropertyNameCaseInsensitive = true
};
}
}