namespace ZymonicServices; public abstract class ZymonicFilterApiResponse : IZymonicFilterApiResponse where TFilterResults : class, IZymonicFilterResults where TFilterResult : class, IZymonicFilterResult { // This has to be overridden for the incoming JSON to match the class being deserialised public abstract TFilterResults? filterResults { get; set; } // [JsonPropertyName("session_errors")] // public List? sessionErrors { get; set; } public string? Authenticated { get; set; } public List? session_errors { get; set; } }