mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
12 lines
209 B
C#
12 lines
209 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class SearchResults
|
|
{
|
|
public List<SearchResult> Results { get; set; }
|
|
|
|
public int TotalResults { get; set; }
|
|
}
|
|
}
|