All checks were successful
continuous-integration/drone/push Build is passing
12 lines
226 B
C#
12 lines
226 B
C#
using System;
|
|
|
|
namespace CinemaLib.API;
|
|
|
|
public class FilterResponse
|
|
{
|
|
public int took { get; set; }
|
|
public bool timed_out { get; set; }
|
|
public ShardsInfo? _shards { get; set; }
|
|
public FilterHits? hits { get; set; }
|
|
}
|