Added Prowl notifications.

This commit is contained in:
Mark McDowall 2011-11-02 19:44:22 -07:00
parent 1b8e359a63
commit 277b873b39
18 changed files with 452 additions and 9 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class ProwlPrioritySelectListModel
{
public string Name { get; set; }
public int Value { get; set; }
}
}