1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 07:52:37 +01:00
Sonarr/NzbDrone.Web/Models/MappingModel.cs

14 lines
281 B
C#
Raw Normal View History

2011-02-04 02:00:55 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Models
{
public class MappingModel
{
public int Id { get; set; }
public String Path { get; set; }
}
}