using System;
namespace Jellyfin.Data.Queries
{
///
/// A class representing a query to the activity logs.
///
public class ActivityLogQuery
{
///
/// Gets or sets the index to start at.
///
public int? StartIndex { get; set; }
///
/// Gets or sets the maximum number of items to include.
///
public int? Limit { get; set; }
///
/// Gets or sets a value indicating whether to take entries with a user id.
///
public bool? HasUserId { get; set; }
///
/// Gets or sets the minimum date to query for.
///
public DateTime? MinDate { get; set; }
}
}