mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-03 19:08:20 -04:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class JobQueueItemModel
|
|
{
|
|
public string Name { get; set; }
|
|
public dynamic Options { get; set; }
|
|
}
|
|
} |