mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
12 lines
No EOL
260 B
C#
12 lines
No EOL
260 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; }
|
|
}
|
|
} |