using System; namespace ZymonicServices; public interface IZymonicFilterSearch : ICloneable { public string search { get; set; } public int report_pagenum { get; set; } public int results_per_page { get; set; } public bool SearchIsParameterless { get; set; } public bool isEmpty(); }