Files
Examples/GerstITS.WebClients.Example.Api/Contracts/Serialization/SearchResult.cs
2021-06-15 10:59:47 +02:00

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
}
}