aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Queries/ActivityLogQuery.cs
blob: f1af099d3cce77ec30f9951784f959abfdebc134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace Jellyfin.Data.Queries
{
    /// <summary>
    /// A class representing a query to the activity logs.
    /// </summary>
    public class ActivityLogQuery : PaginatedQuery
    {
        /// <summary>
        /// Gets or sets a value indicating whether to take entries with a user id.
        /// </summary>
        public bool? HasUserId { get; set; }

        /// <summary>
        /// Gets or sets the minimum date to query for.
        /// </summary>
        public DateTime? MinDate { get; set; }
    }
}