24 lines
447 B
C#
24 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GerstITS.Examples.WebClients.Examples.Api
|
|
{
|
|
public class SearchResult<TItem>
|
|
{
|
|
#region Properties
|
|
|
|
public int TotalCount { get; set; }
|
|
public IEnumerable<TItem> Result { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public SearchResult()
|
|
{
|
|
Result = Array.Empty<TItem>();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |