mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-01 12:45:03 +00:00
13 lines
276 B
C#
13 lines
276 B
C#
|
using System;
|
|||
|
using NzbDrone.Core.Datastore;
|
|||
|
using PetaPoco;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Indexers
|
|||
|
{
|
|||
|
public class Indexer : ModelBase
|
|||
|
{
|
|||
|
public Boolean Enable { get; set; }
|
|||
|
public String Type { get; set; }
|
|||
|
public String Name { get; set; }
|
|||
|
}
|
|||
|
}
|