blob: 7c95ae5d84dcf30060453a7604de1c96d630282f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Collections.Generic;
namespace Timeline.Services.Api
{
public class SearchResult<TItem>
{
#pragma warning disable CA2227 // Collection properties should be read only
public List<SearchResultItem<TItem>> Items { get; set; } = new();
#pragma warning restore CA2227 // Collection properties should be read only
}
}
|