Files
stream-cinema/StreamCinemaLib/API/FilterResponse.cs

12 lines
232 B
C#

using System;
namespace StreamCinemaLib.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; }
}