using System; using System.Collections.Generic; namespace GerstITS.Examples.WebClients.Examples.Api { public class SearchResult { #region Properties public int TotalCount { get; set; } public IEnumerable Result { get; set; } #endregion #region Constructors public SearchResult() { Result = Array.Empty(); } #endregion } }