using System.Text.Json.Serialization; namespace ZymonicServices; public abstract class ZymonicFilterSearch : IZymonicFilterSearch { public string search { get; set; } = "Refresh Results"; public string refresh_this_filter_mvs { get; set; } = "false"; public int report_pagenum { get; set; } = 1; public int results_per_page { get; set; } = 100; [JsonIgnore] public bool SearchIsParameterless { get; set; } = false; public object Clone() { return this.MemberwiseClone(); } public abstract bool isEmpty(); }