1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00

12 lines
260 B
C#
Raw Normal View History

2013-02-20 23:07:34 -08:00
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; }
}
}