Revert "Remove unnecessary constructor"

This reverts commit 7e9dc18676.
This commit is contained in:
Jack251970 2026-01-05 09:43:48 +08:00
parent 43df5e1744
commit 10f160d9a2

View file

@ -4,6 +4,10 @@ namespace Flow.Launcher.Plugin.Explorer.Search
{
public record struct SearchResult
{
public SearchResult()
{
}
public string FullPath { get; init; }
public ResultType Type { get; init; }
public int Score { get; init; }