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