namespace MediaBrowser.Model.Sync
{
    public class SyncJobQuery
    {
        /// 
        /// Gets or sets the start index.
        /// 
        /// The start index.
        public int? StartIndex { get; set; }
        /// 
        /// Gets or sets the limit.
        /// 
        /// The limit.
        public int? Limit { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is completed.
        /// 
        /// null if [is completed] contains no value, true if [is completed]; otherwise, false.
        public bool? IsCompleted { get; set; }
        /// 
        /// Gets or sets the target identifier.
        /// 
        /// The target identifier.
        public string TargetId { get; set; }
        /// 
        /// Gets or sets the user identifier.
        /// 
        /// The user identifier.
        public string UserId { get; set; }
    }
}