namespace Uwaa.Pleroma;
public class SearchResults
{
///
/// Accounts which match the search query.
///
[JsonPropertyName("accounts")]
public Account[]? Accounts { get; set; }
///
/// Hashtags which match the search query.
///
[JsonPropertyName("hashtags")]
public Hashtag[]? Hashtags { get; set; }
///
/// Statuses which match the search query.
///
[JsonPropertyName("statuses")]
public Status[]? Statuses { get; set; }
}