1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 10:48:46 +00:00
Sonarr/NzbDrone.Core/Indexers/Indexer.cs
2013-03-02 10:25:39 -08:00

13 lines
No EOL
261 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
public class Indexer : ModelBase
{
public Boolean Enable { get; set; }
public String Type { get; set; }
public String Name { get; set; }
}
}