Files
Examples/GerstITS.WebClients.Example.Api/Contracts/Serialization/SearchResult.cs
2022-12-22 15:29:53 +01:00

23 lines
393 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
}