1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 23:27:26 +00:00
Radarr/NzbDrone.Web/Models/ProwlPrioritySelectListModel.cs

13 lines
260 B
C#
Raw Normal View History

2011-11-02 19:44:22 -07:00
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; }
}
}