dotnet-jwt-token-manager/OpenHarbor.JwtTokenManager/JwtTokenManagerJsonContext.cs

12 lines
331 B
C#
Raw Normal View History

2024-12-22 13:03:54 -05:00
using System.Text.Json.Serialization;
namespace OpenHarbor.JwtTokenManager;
[JsonSourceGenerationOptions(
PropertyNamingPolicy = JsonKnownNamingPolicy.SnakeCaseLower,
PropertyNameCaseInsensitive = true
)]
[JsonSerializable(typeof(JwtTokenResponse))]
public partial class JwtTokenManagerJsonContext : JsonSerializerContext
{
}