Skip to content

Commit 73bef22

Browse files
committed
Add a search result object model
1 parent 4016ba1 commit 73bef22

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
4+
using Microsoft.OpenApi.Models;
5+
6+
namespace Microsoft.OpenApi.Services
7+
{
8+
public class SearchResult
9+
{
10+
public CurrentKeys CurrentKeys { get; set; }
11+
public OpenApiOperation Operation { get; set; }
12+
}
13+
}

0 commit comments

Comments
 (0)