using JdeScoping.Core.Models.SearchResults; namespace JdeScoping.ExcelIO.Tests.Fixtures; public class MinimalSearchFixture : WorkbookFixtureBase { protected override SearchModel CreateSearchModel() => new() { Id = 1, Name = "Minimal Search Test", UserName = "testuser", SubmitDt = new DateTime(2024, 1, 15, 14, 30, 45), StartDt = new DateTime(2024, 1, 15, 14, 31, 0), EndDt = new DateTime(2024, 1, 15, 14, 35, 0), ExtractMisData = false, Results = [] }; }