1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 09:47:39 +00:00
Sonarr/NzbDrone.Web/Models/JobQueueItemModel.cs
2012-09-10 12:04:17 -07:00

12 lines
No EOL
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; }
}
}