mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.IndexerVersions
|
|
{
|
|
public class IndexerDefinitionVersion : ModelBase
|
|
{
|
|
public string File { get; set; }
|
|
public string Sha { get; set; }
|
|
public DateTime LastUpdated { get; set; }
|
|
public string DefinitionId { get; set; }
|
|
}
|
|
}
|