17 lines
336 B
C#
17 lines
336 B
C#
using isnd.Data;
|
|
using isnd.Data.Packages;
|
|
|
|
namespace isnd.Services
|
|
{
|
|
public class IndexResult
|
|
{
|
|
public int totalHits { get; set; }
|
|
public Package[] data { get; set; }
|
|
}
|
|
|
|
public class AutoCompleteResult
|
|
{
|
|
public int totalHits { get; set; }
|
|
public string[] data { get; set; }
|
|
}
|
|
} |