using System.Collections.Generic; namespace Timeline.Services.Api { public class SearchResult { #pragma warning disable CA2227 // Collection properties should be read only public List> Items { get; set; } = new(); #pragma warning restore CA2227 // Collection properties should be read only } }