12 lines
331 B
C#
12 lines
331 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OpenHarbor.JwtTokenManager;
|
|
|
|
[JsonSourceGenerationOptions(
|
|
PropertyNamingPolicy = JsonKnownNamingPolicy.SnakeCaseLower,
|
|
PropertyNameCaseInsensitive = true
|
|
)]
|
|
[JsonSerializable(typeof(JwtTokenResponse))]
|
|
public partial class JwtTokenManagerJsonContext : JsonSerializerContext
|
|
{
|
|
} |