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